import { Meta, StoryObj } from '@storybook/web-components';
import { IInputFeedbackProp, ModusSize, WeekStartDay } from '../types';
interface DateArgs {
    bordered?: boolean;
    'custom-class'?: string;
    disabled?: boolean;
    feedback?: IInputFeedbackProp;
    format?: 'yyyy-mm-dd' | 'dd-mm-yyyy' | 'mm-dd-yyyy' | 'yyyy/mm/dd' | 'dd/mm/yyyy' | 'mm/dd/yyyy' | 'MMM DD, YYYY';
    'input-id'?: string;
    'input-tab-index'?: number;
    label?: string;
    max?: string;
    min?: string;
    name?: string;
    'read-only'?: boolean;
    required?: boolean;
    'show-week-numbers'?: boolean;
    size?: ModusSize;
    value: string;
    'week-start-day'?: WeekStartDay;
}
declare const meta: Meta<DateArgs>;
export default meta;
type Story = StoryObj<DateArgs>;
export declare const Default: Story;
export declare const WithErrorFeedback: Story;
export declare const ShadowDomParent: Story;
export declare const Migration: Story;
