import { AllowedValueWithCode } from '../../commonStateTypes/allowedValue'; import { SelectorView } from '../../commonStateTypes/viewAndReport/viewAndReport'; import { CompanyConfigState } from './companyConfigState'; export interface VendorTypeListSelectorView extends SelectorView { companyIndustries: AllowedValueWithCode[]; } export declare const getCompanyConfig: (companyConfigState: CompanyConfigState) => { companyIndustries: AllowedValueWithCode[]; fetchState: import("../..").FetchState; error: import("../..").ZeniAPIStatus> | undefined; version: number; };