import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AccountingDepartmentsFilter = { /** * Id of the subsidiary to search for */ subsidiary?: string | undefined; }; /** @internal */ export declare const AccountingDepartmentsFilter$inboundSchema: z.ZodType; /** @internal */ export type AccountingDepartmentsFilter$Outbound = { subsidiary?: string | undefined; }; /** @internal */ export declare const AccountingDepartmentsFilter$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 AccountingDepartmentsFilter$ { /** @deprecated use `AccountingDepartmentsFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingDepartmentsFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingDepartmentsFilter$Outbound` instead. */ type Outbound = AccountingDepartmentsFilter$Outbound; } export declare function accountingDepartmentsFilterToJSON(accountingDepartmentsFilter: AccountingDepartmentsFilter): string; export declare function accountingDepartmentsFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingdepartmentsfilter.d.ts.map