import { StoryObj } from '@storybook/react'; import { default as DateOutput } from './DateOutput'; declare const meta: { component: typeof DateOutput; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { date: { control: { type: "date"; }; description: string; table: { defaultValue: { summary: undefined; }; }; }; isActive: { control: { type: "boolean"; }; description: string; }; onClick: { description: string; control: { type: "object"; }; }; sizeC: { control: { type: "radio"; }; description: string; options: (string | undefined)[]; table: { defaultValue: { summary: string; }; }; }; textCustom: { control: { type: "object"; }; description: string; 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; }; }; }; }; tags: string[]; }; export default meta; type Story = StoryObj; export declare const Primary: Story;