import { StoryObj } from '@storybook/react'; import { default as InputLabel } from '../InputLabel'; declare const meta: { component: typeof InputLabel; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { isActive: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; systemMessageType: { description: string; control: { type: "select"; }; defaultValue: undefined; options: (string | undefined)[]; }; lableVariant: { description: string; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; options: string[]; }; align: { description: string; control: { type: "radio"; }; table: { defaultValue: { summary: string; }; }; options: string[]; }; externalStyle: { description: string; }; isMovedUp: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; 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; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;