import { StoryObj } from '@storybook/react';
declare const meta: {
    component: import('react').ForwardRefExoticComponent<Omit<import('../../../molecules/InputWrapper').TInputWrapperUserInputProps, "" | "InputElement"> & {
        themeType?: import('../../../../types').TUiColorsNotTransparent;
        layer?: import('../../../../types').TLayer;
        startHeight?: string;
    } & import('react').TextareaHTMLAttributes<HTMLTextAreaElement> & import('react').RefAttributes<HTMLTextAreaElement>>;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        systemMessage: {
            description: string;
            control: {
                type: "object";
            };
        };
        placeholder: {
            description: string;
            control: {
                type: "text";
            };
        };
        icon: {
            description: string;
            control: {
                type: "object";
            };
        };
        value: {
            description: string;
            control: {
                type: "text";
            };
        };
        transparentBackground: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        externalStyle: {
            description: string;
            control: {
                type: "object";
            };
        };
        labelVariant: {
            description: string;
            control: {
                type: "select";
            };
        };
        outlined: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        outlinedBackgroundStrength: {
            description: string;
            control: {
                min: number;
                max: number;
                step: number;
                type: "number";
            };
        };
        underline: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        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;
                };
            };
        };
        label: {
            description: string;
            control: {
                type: "text";
            };
        };
        align: {
            description: string;
            control: {
                type: "select";
            };
        };
        disabled: {
            description: string;
            control: {
                type: "boolean";
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
export declare const WithErrorState: Story;
export declare const WithSuccessState: Story;
export declare const WithInfoState: Story;
