/// <reference types="react" />
import type { StoryObj } from '@storybook/react';
import type { TextInputProps } from '../../TextInputTypes';
declare const _default: {
    title: string;
    tags: string[];
    component: import("react").ForwardRefExoticComponent<TextInputProps & {
        onCurrencyChange?: ((currency: import("~components/TextInput/assemblies/CurrencyInput/CurrencyInputTypes").Currency) => void) | undefined;
    } & import("react").RefAttributes<HTMLDivElement>>;
    argTypes: {};
};
export default _default;
type Story = StoryObj<TextInputProps>;
export declare const Default: Story;
