import { Meta, StoryObj } from '@storybook/react';
import { Input } from './Input';
declare const meta: Meta<typeof Input>;
export default meta;
type Story = StoryObj<typeof Input>;
export declare const Empty: Story;
export declare const Placeholder: Story;
export declare const Value: Story;
