import { FC } from 'react';
import { CurrencyType } from './types';
declare const Index: FC<{
    setErrors: (errors: Record<string, string[]>) => void;
    handleError: (data: Record<string, any>, statusCode: number, message: string) => void;
    currencies: CurrencyType[];
}>;
export default Index;
