import type { Meta, StoryObj } from "@storybook/react"; import { Calendar } from "./calendar"; declare const meta: Meta; export default meta; type Story = StoryObj; /** * Default calendar view showing the current month. * No events are displayed in this basic configuration. */ export declare const Default: Story; /** * Calendar with multiple events across different days. * Events are color-coded and can be clicked. */ export declare const WithEvents: Story; /** * Calendar in month view displaying a full month grid. * This is the default view for most calendar applications. */ export declare const MonthView: Story; /** * Calendar in week view showing hourly time slots. * Useful for detailed scheduling within a week. */ export declare const WeekView: Story; /** * Calendar in day view showing a single day with hourly slots. * Ideal for detailed daily scheduling. */ export declare const DayView: Story; /** * Empty calendar with no events. * Shows the clean calendar interface without any scheduled items. */ export declare const EmptyCalendar: Story; //# sourceMappingURL=Calendar.stories.d.ts.map