import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LedgerAccountsFilter = { updatedSince?: Date | undefined; }; /** @internal */ export declare const LedgerAccountsFilter$inboundSchema: z.ZodType; /** @internal */ export type LedgerAccountsFilter$Outbound = { updated_since?: string | undefined; }; /** @internal */ export declare const LedgerAccountsFilter$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 LedgerAccountsFilter$ { /** @deprecated use `LedgerAccountsFilter$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LedgerAccountsFilter$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LedgerAccountsFilter$Outbound` instead. */ type Outbound = LedgerAccountsFilter$Outbound; } export declare function ledgerAccountsFilterToJSON(ledgerAccountsFilter: LedgerAccountsFilter): string; export declare function ledgerAccountsFilterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ledgeraccountsfilter.d.ts.map