import { z } from 'zod'; export declare namespace CreatePaymentLinkCommand { const RequestCreatePaymentLinkSchema: z.ZodObject<{ amount: z.ZodNumber; paymentId: z.ZodString; currency: z.ZodOptional; methodId: z.ZodOptional; email: z.ZodOptional; phone: z.ZodOptional; successUrl: z.ZodOptional; failUrl: z.ZodOptional; notifyUrl: z.ZodOptional; lang: z.ZodOptional; }, "strip", z.ZodTypeAny, { amount: number; paymentId: string; methodId?: number | undefined; email?: string | undefined; currency?: string | undefined; phone?: string | undefined; successUrl?: string | undefined; failUrl?: string | undefined; notifyUrl?: string | undefined; lang?: string | undefined; }, { amount: number; paymentId: string; methodId?: number | undefined; email?: string | undefined; currency?: string | undefined; phone?: string | undefined; successUrl?: string | undefined; failUrl?: string | undefined; notifyUrl?: string | undefined; lang?: string | undefined; }>; type ICreatePaymentLink = z.infer; type ICreatePaymentLinkInput = z.input; const ResponseCreatePaymentLinkSchema: z.ZodObject<{ type: z.ZodEnum<["success", "error"]>; message: z.ZodOptional; }, "strip", z.ZodTypeAny, { type: "success" | "error"; message?: string | undefined; }, { type: "success" | "error"; message?: string | undefined; }>; type ICreatePaymentLinkResponse = z.infer; } //# sourceMappingURL=create-payment-link.command.d.ts.map