import { StoryObj } from '@storybook/react';
declare const meta: {
    component: import('react').ForwardRefExoticComponent<{
        value?: string;
        align?: import('../../../types').TTextAlignLC;
        type?: "week" | "date" | "month" | "time" | "datetime-local" | "datetime";
    } & import('../RawInput').TRawInput & import('./TDateInput.model').TNativeAttrs & import('react').RefAttributes<HTMLInputElement>>;
    title: string;
    parameters: {
        docs: {
            description: {
                component: string;
            };
        };
    };
    argTypes: {
        type: {
            description: string;
            defaultValue: string;
            control: {
                type: "select";
            };
        };
        align: {
            description: string;
            defaultValue: string;
            control: {
                type: "select";
            };
        };
        value: {
            description: string;
            control: {
                type: "text";
            };
        };
        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;
                };
            };
        };
    };
    tags: string[];
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
