import { StoryObj } from '@storybook/react'; import { Input } from './input'; declare const meta: { title: string; component: typeof Input; parameters: { layout: string; backgrounds: { default: string; values: { name: string; value: string; }[]; }; }; tags: string[]; argTypes: { type: { control: string; options: string[]; }; placeholder: { control: string; }; disabled: { control: string; }; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Email: Story; export declare const Password: Story; export declare const Number: Story; export declare const Disabled: Story; export declare const WithValue: Story; export declare const AllTypes: Story; //# sourceMappingURL=input.stories.d.ts.map