import { z } from 'zod'; export declare const confirmMatchSchema: z.ZodObject<{ matchId: z.ZodString; confirmed: z.ZodBoolean; }, "strip", z.ZodTypeAny, { matchId: string; confirmed: boolean; }, { matchId: string; confirmed: boolean; }>; export type ConfirmMatchInput = z.infer; export declare function confirmMatch(input: ConfirmMatchInput): { matchId: string; confirmed: boolean; success: boolean; }; //# sourceMappingURL=confirm-match.d.ts.map