import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Industry = { /** * Company UUID */ companyUuid?: string | undefined; /** * Industry title */ title?: string | null | undefined; /** * North American Industry Classification System (NAICS) is used to classify businesses with a six digit number based on the primary type of work the business performs. */ naicsCode?: string | null | undefined; /** * A list of Standard Industrial Classification (SIC) codes, which are four digit numbers that categorize the industries that companies belong to based on their business activities. If sic_codes is not passed in, we will perform an internal lookup with `naics_code`. */ sicCodes?: Array | undefined; }; /** @internal */ export declare const Industry$inboundSchema: z.ZodType; export declare function industryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=industry.d.ts.map