import type { StoryObj } from '@storybook/react'; import RoundedDatePicker from './RoundedDatePicker'; declare const meta: { component: typeof RoundedDatePicker; tags: string[]; args: { focusColor: string; secondaryColor: string; helperTextColor: string; outlineColor: string; backgroundColor: string; textColor: string; contrastColor: string; accentColor: string; errorColor: string; fontSize: string; fontWeight: string; cantEdit: false; }; parameters: { date: Date; }; }; export default meta; type Story = StoryObj; export declare const Empty: Story; export declare const Default: Story; export declare const ValueAndLabel: Story; export declare const Full: Story; export declare const FullDateTime: Story; export declare const Error: Story; export declare const Menu: Story; export declare const DateTimeDateMenu: Story; export declare const DateTimeTimeMenu: Story; export declare const ErrorColor: Story; export declare const DifferentColors: Story;