import * as z from 'zod'; declare const ListCurrenciesRequest: z.ZodObject<{}, z.core.$strip>; declare const ListCurrenciesResponse: z.ZodObject<{ currencies: z.ZodOptional; symbol: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>; declare const ConvertCurrencyRequest: z.ZodObject<{ identifiers: z.ZodObject<{ from: z.ZodString; to: z.ZodString; }, z.core.$strip>; amounts: z.ZodArray; decimalPlaces: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>; declare const ConvertCurrencyResponse: z.ZodObject<{ amounts: z.ZodOptional; decimalPlaces: z.ZodOptional; }, z.core.$strip>>>; rateTimestamp: z.ZodNullable>; }, z.core.$strip>; declare const GetConversionRateRequest: z.ZodObject<{ identifiers: z.ZodObject<{ from: z.ZodString; to: z.ZodString; }, z.core.$strip>; }, z.core.$strip>; declare const GetConversionRateResponse: z.ZodObject<{ rate: z.ZodOptional; decimalPlaces: z.ZodOptional; }, z.core.$strip>>; rateTimestamp: z.ZodNullable>; }, z.core.$strip>; export { ConvertCurrencyRequest, ConvertCurrencyResponse, GetConversionRateRequest, GetConversionRateResponse, ListCurrenciesRequest, ListCurrenciesResponse };