import { z } from 'zod';
export declare const ApiCurrencyType: z.ZodEnum<["USD", "CAD", "EUR", "JPY"]>;
export type ApiCurrencyType = z.infer<typeof ApiCurrencyType>;
