import { StoryObj } from '@storybook/html'; import { TextInputProps } from './TextInput'; declare const meta: { title: string; render: (args: TextInputProps) => DocumentFragment; argTypes: { title: { control: string; }; placeholder: { control: string; }; readonly: { control: string; }; width: { control: string; }; value: { control: string; }; numberOnly: { control: string; }; onInput: { action: string; }; onChange: { action: string; }; onBlur: { action: string; }; onKeyup: { action: string; }; }; }; export default meta; type Story = StoryObj; export declare const Normal: Story;