import { NICategoryLetter } from '././nICategoryLetter';
export declare class NICategory {
    /**
    * The start date of the NI category (YYYY-MM-DD)
    */
    'startDate'?: string;
    'niCategory': NICategoryLetter;
    /**
    * Xero unique identifier for the NI category
    */
    'niCategoryID'?: number;
    /**
    * The date in which the employee was first employed as a civilian (YYYY-MM-DD)
    */
    'dateFirstEmployedAsCivilian'?: string;
    /**
    * The workplace postcode
    */
    'workplacePostcode': string;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export declare namespace NICategory {
}
