import { StoryObj } from '@storybook/react';
import { LabeledInput } from '..';
declare const meta: {
    component: typeof LabeledInput;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        themeType: {
            description: string;
            control: {
                type: "select";
            };
        };
        layer: {
            description: string;
            control: {
                type: "range";
                min: number;
                max: number;
                step: number;
            };
        };
        isActive: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        align: {
            description: string;
            control: {
                type: "select";
            };
        };
        label: {
            description: string;
            control: {
                type: "text";
            };
        };
        systemMessageType: {
            description: string;
            control: {
                type: "object";
            };
        };
        hasValue: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        underline: {
            description: string;
            control: {
                type: "boolean";
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
