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