export declare class Employment {
    /**
    * Xero unique identifier for the payroll calendar of the employee
    */
    'payrollCalendarID': string;
    /**
    * Xero unique identifier for the payrun calendar for the employee (Deprecated in version 1.1.6)
    */
    'payRunCalendarID'?: string;
    /**
    * Start date of the employment (YYYY-MM-DD)
    */
    'startDate': string;
    /**
    * Engagement type of the employee
    */
    'engagementType': string;
    /**
    * End date for an employee with a fixed-term engagement type
    */
    'fixedTermEndDate'?: string;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
