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