import type { StoryObj } from "@storybook/react"; import React from "react"; declare const meta: { title: string; component: React.ForwardRefExoticComponent>; tags: string[]; argTypes: { placeholder: { control: "text"; description: string; }; value: { control: "text"; description: string; }; label: { control: "text"; description: string; }; message: { control: "text"; description: string; }; messageStatus: { options: readonly ["info", "default", "error"]; control: { type: "select"; }; description: string; }; disabled: { control: "boolean"; description: string; }; isError: { control: "boolean"; description: string; }; type: { control: "select"; options: string[]; description: string; }; }; }; export default meta; type Story = StoryObj; export declare const Playground: Story; export declare const WithError: Story; export declare const Disabled: Story; export declare const WithInfoMessage: Story; export declare const AllVariants: Story; //# sourceMappingURL=Input.stories.d.ts.map