import type { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: import("react").ForwardRefExoticComponent>; argTypes: { placeholder: { control: "text"; }; type: { control: "radio"; options: string[]; }; }; args: { placeholder: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story;