import { z } from 'zod'; export declare const MatchSchema: z.ZodObject<{ id: z.ZodString; invoiceId: z.ZodString; transactionId: z.ZodString; transactionIds: z.ZodOptional>; confidence: z.ZodNumber; passName: z.ZodString; reasons: z.ZodArray; confirmed: z.ZodDefault; createdAt: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; createdAt: string; invoiceId: string; transactionId: string; confidence: number; passName: string; reasons: string[]; confirmed: boolean; transactionIds?: string[] | undefined; }, { id: string; createdAt: string; invoiceId: string; transactionId: string; confidence: number; passName: string; reasons: string[]; transactionIds?: string[] | undefined; confirmed?: boolean | undefined; }>; export type Match = z.infer; //# sourceMappingURL=match.schema.d.ts.map