import { BusinessIdentifier } from './businessIdentifier';
import { IndustryCategoryV3 } from './industryCategoryV3';
import { WithEnglish } from './withEnglish';
export interface Employer {
    business_name?: WithEnglish;
    industry_category?: IndustryCategoryV3;
    business_identifiers?: Array<BusinessIdentifier>;
}
export declare namespace Employer {
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=employer.d.ts.map