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