import { AllowedValueWithCode } from '../../commonStateTypes/allowedValue'; import { ZeniAPIResponse } from '../../responsePayload'; interface CompanyConfigPayload { industry_types: AllowedValueWithCode[]; } export type CompanyConfigResponse = ZeniAPIResponse; export {};