import { IndustrySubCategoryApiDto } from './industrySubCategoryApiDto';
export interface IndustryCategoryApiDto {
    name?: string;
    sub_items?: Array<IndustrySubCategoryApiDto>;
    type?: IndustryCategoryApiDto.TypeEnum;
}
export declare namespace IndustryCategoryApiDto {
    const validTypeEnum: readonly ["industry_category"];
    type TypeEnum = (typeof validTypeEnum)[number] | 'UNKNOWN';
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=industryCategoryApiDto.d.ts.map