import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CompaniesFilter = { /** * Name of the company to filter on */ name?: string | undefined; }; /** @internal */ export declare const CompaniesFilter$inboundSchema: z.ZodType; /** @internal */ export type CompaniesFilter$Outbound = { name?: string | undefined; }; /** @internal */ export declare const CompaniesFilter$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CompaniesFilter$ { /** @deprecated use `CompaniesFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CompaniesFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CompaniesFilter$Outbound` instead. */ type Outbound = CompaniesFilter$Outbound; } export declare function companiesFilterToJSON(companiesFilter: CompaniesFilter): string; export declare function companiesFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=companiesfilter.d.ts.map