import { StoryObj } from '@storybook/react';
import { default as DateNumberWithStatus } from '../DateNumberWithStatus';
declare const meta: {
    component: typeof DateNumberWithStatus;
    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;
                };
            };
        };
        dateNumber: {
            description: string;
            control: {
                type: "number";
            };
        };
        isAvailable: {
            description: string;
            control: {
                type: "select";
            };
        };
        disabled: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        isSelected: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        isCurrentDay: {
            description: string;
            control: {
                type: "boolean";
            };
        };
        range: {
            description: string;
            control: {
                type: "object";
            };
        };
        onClick: {
            description: string;
            control: {
                type: "object";
            };
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
