import { DurationType } from "../entities/company-subscription.entity";
export declare class CreateCompanyDto {
    company_name: string;
    first_name: string;
    last_name: string;
    email: string;
    phone_number?: string;
    subscription_start_date: string;
    subscription_duration: number;
    subscription_duration_type: DurationType;
    subscription_amount: number;
    address?: string;
    lat?: string;
    long?: string;
    country_code?: number;
    currency: string;
}
