import React, { ComponentProps } from 'react'; import CurrencyField from '.'; declare const _default: { title: string; component: React.FC>; argTypes: { value: { defaultValue: number; }; locale: { defaultValue: string; control: { type: string; options: string[]; }; }; currency: { defaultValue: string; control: { type: string; options: string[]; }; }; }; args: { value: number; locale: string; currency: string; }; }; export default _default; export declare const Default: (args: ComponentProps) => React.JSX.Element;