import { Meta, StoryObj } from '@storybook/web-components';
import { IInputFeedbackProp, ModusSize } from '../types';
interface DateArgs {
    bordered?: boolean;
    'custom-class'?: string;
    disabled?: boolean;
    feedback?: IInputFeedbackProp;
    'input-id'?: string;
    'input-tab-index'?: number;
    label?: string;
    max?: string;
    min?: string;
    name?: string;
    placeholder?: string;
    'read-only'?: boolean;
    required?: boolean;
    size?: ModusSize;
    value: string;
}
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 Migration: Story;
