import { z } from 'zod'; export declare namespace GetCurrenciesStatusCommand { const ResponseGetCurrenciesStatusSchema: 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 IGetCurrenciesStatusResponse = z.infer; } //# sourceMappingURL=get-currencies-status.command.d.ts.map