import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SubsidiaryReferenceInput = { /** * The name of the company. */ name?: string | null | undefined; }; /** @internal */ export declare const SubsidiaryReferenceInput$inboundSchema: z.ZodType; /** @internal */ export type SubsidiaryReferenceInput$Outbound = { name?: string | null | undefined; }; /** @internal */ export declare const SubsidiaryReferenceInput$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 SubsidiaryReferenceInput$ { /** @deprecated use `SubsidiaryReferenceInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SubsidiaryReferenceInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SubsidiaryReferenceInput$Outbound` instead. */ type Outbound = SubsidiaryReferenceInput$Outbound; } export declare function subsidiaryReferenceInputToJSON(subsidiaryReferenceInput: SubsidiaryReferenceInput): string; export declare function subsidiaryReferenceInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subsidiaryreferenceinput.d.ts.map