export declare enum JobLocationEnums {
    ONSITE = "ONSITE",
    REMOTE = "REMOTE",
    BOTH = "BOTH"
}
export declare enum TypeOfEmploymentEnums {
    FULLTIME = "FULLTIME",
    PARTTIME = "PARTTIME",
    BOTH = "BOTH"
}
export declare class AdminUpdateJobInformationDto {
    jobRole: string;
    note?: string;
    skills: string[];
    openings: number;
    location: JobLocationEnums;
    typeOfEmployment: TypeOfEmploymentEnums;
    onboardingTat: string;
    candidateCommunicationSkills: string;
    currency: string;
    expectedSalaryFrom: number;
    expectedSalaryTo: number;
    tentativeStartDate: string;
    tentativeEndDate: string;
    additionalComment?: string;
    countryId: number;
    stateId: number;
    cityId: number;
    clientId: number;
}
