import { StoryObj } from '@storybook/html'; import { EditInputProps } from './EditInput'; declare const meta: { title: string; render: (args: EditInputProps) => DocumentFragment; argTypes: { placeholder: { control: string; }; edit: { control: string; }; focus: { control: string; }; width: { control: string; }; value: { control: string; }; onInput: { action: string; }; onBlur: { action: string; }; onKeydown: { action: string; }; }; }; export default meta; type Story = StoryObj; export declare const Normal: Story; export declare const Edit: Story;