import { StoryObj } from '@storybook/react'; import { default as SingleInputs } from '../SingleInputs'; declare const meta: { component: typeof SingleInputs; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { themeType: { description: string; control: { type: "select"; }; options: ("primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent" | undefined)[]; table: { defaultValue: { summary: "primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent"; }; }; }; layer: { description: string; control: { type: "range"; min: number; max: number; }; table: { defaultValue: { summary: string; }; }; }; length: { description: string; control: { type: "number"; }; table: { defaultValue: { summary: string; }; }; }; automaticCase: { description: string; control: { type: "select"; options: (string | undefined)[]; }; }; status: { description: string; control: { type: "object"; }; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;