import type { BaseFormFieldProps } from '../../core/hooks/useForm/types';
import type { CountryCode } from '../../core/models/country-code';
import type { Currency } from '../../core/models/currency';
export interface CurrencySchema {
    currency?: string;
}
export interface CurrencyProps extends BaseFormFieldProps<CurrencySchema> {
    country: CountryCode;
}
export declare const currencyByCountry: Partial<Record<CountryCode, Array<Currency>>>;
