import { default as Calendar } from './calendar'; import { ArgTypes, Meta, StoryObj } from '@storybook/react-vite'; /** * Convert the number values in the args to Date objects. * The storybook URL contains the args as string values, so we need to convert them to Date objects. */ export declare const convertArgsToDate: (dateArgs: string[], args: Record) => Record; export declare const getDateArgNames: (argTypes: ArgTypes) => string[]; declare const meta: Meta; export default meta; export type Story = StoryObj; export declare const Basic: Story; export declare const DefaultFocusedValue: Story; export declare const Controlled: Story; export declare const FocusedValue: Story; export declare const MinDate: Story; export declare const MaxDate: Story; export declare const MinMaxDate: Story;