import { z } from 'zod';
export declare const GreenInvoicePayloadSchema: z.ZodObject<{
    id: z.ZodString;
    secret: z.ZodString;
}, z.core.$strip>;
export declare const DeelPayloadSchema: z.ZodObject<{
    apiToken: z.ZodString;
}, z.core.$strip>;
export type GreenInvoicePayload = z.infer<typeof GreenInvoicePayloadSchema>;
export type DeelPayload = z.infer<typeof DeelPayloadSchema>;
