import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BalanceSheetFilter = { /** * Filter by start date. If start date is given, end date is required. */ startDate?: string | undefined; /** * Filter by end date. If end date is given, start date is required. */ endDate?: string | undefined; }; /** @internal */ export declare const BalanceSheetFilter$inboundSchema: z.ZodType; /** @internal */ export type BalanceSheetFilter$Outbound = { start_date?: string | undefined; end_date?: string | undefined; }; /** @internal */ export declare const BalanceSheetFilter$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 BalanceSheetFilter$ { /** @deprecated use `BalanceSheetFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `BalanceSheetFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `BalanceSheetFilter$Outbound` instead. */ type Outbound = BalanceSheetFilter$Outbound; } export declare function balanceSheetFilterToJSON(balanceSheetFilter: BalanceSheetFilter): string; export declare function balanceSheetFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=balancesheetfilter.d.ts.map