import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ReconciliationEntity = { id: string; version: number; lastUpdatedAt: Date; deleted?: boolean | undefined; }; /** @internal */ export declare const ReconciliationEntity$inboundSchema: z.ZodType; /** @internal */ export type ReconciliationEntity$Outbound = { id: string; version: number; lastUpdatedAt: string; deleted: boolean; }; /** @internal */ export declare const ReconciliationEntity$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 ReconciliationEntity$ { /** @deprecated use `ReconciliationEntity$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ReconciliationEntity$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ReconciliationEntity$Outbound` instead. */ type Outbound = ReconciliationEntity$Outbound; } export declare function reconciliationEntityToJSON(reconciliationEntity: ReconciliationEntity): string; export declare function reconciliationEntityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reconciliationentity.d.ts.map