import { Contracts } from '././contracts';
import { NICategory } from '././nICategory';
import { NICategoryLetter } from '././nICategoryLetter';
export declare class Employment {
    /**
    * Xero unique identifier for the payroll calendar of the employee
    */
    'payrollCalendarID': string;
    /**
    * Start date of the employment (YYYY-MM-DD)
    */
    'startDate': string;
    /**
    * The employment number of the employee
    */
    'employeeNumber': string;
    'niCategory'?: NICategoryLetter;
    /**
    * The employee\'s NI categories
    */
    'niCategories': Array<NICategory>;
    /**
    * The employee\'s contracts
    */
    'contracts'?: Array<Contracts>;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
