import { z } from 'zod'; export declare namespace NotificationCommand { const RequestNotificationSchema: z.ZodObject<{ MERCHANT_ID: z.ZodString; AMOUNT: z.ZodString; MERCHANT_ORDER_ID: z.ZodString; SIGN: z.ZodString; }, "strip", z.ZodUnknown, z.objectOutputType<{ MERCHANT_ID: z.ZodString; AMOUNT: z.ZodString; MERCHANT_ORDER_ID: z.ZodString; SIGN: z.ZodString; }, z.ZodUnknown, "strip">, z.objectInputType<{ MERCHANT_ID: z.ZodString; AMOUNT: z.ZodString; MERCHANT_ORDER_ID: z.ZodString; SIGN: z.ZodString; }, z.ZodUnknown, "strip">>; type INotification = z.infer; type INotificationInput = z.input; } //# sourceMappingURL=notification.command.d.ts.map