import { Meta, StoryObj } from '@storybook/web-components';
import { IInputFeedbackProp, ModusSize } from '../types';
interface TimeInputArgs {
    'auto-complete'?: 'on' | 'off';
    bordered?: boolean;
    'custom-class'?: string;
    'datalist-id'?: string;
    'datalist-options'?: string[];
    disabled?: boolean;
    feedback?: IInputFeedbackProp;
    'input-id'?: string;
    'input-tab-index'?: number;
    label?: string;
    max?: string;
    min?: string;
    name?: string;
    'read-only'?: boolean;
    required?: boolean;
    'show-seconds'?: boolean;
    size?: ModusSize;
    step?: number;
    value: string;
}
declare const meta: Meta<TimeInputArgs>;
export default meta;
type Story = StoryObj<TimeInputArgs>;
export declare const Default: Story;
export declare const WithSeconds: Story;
export declare const WithDatalist: Story;
export declare const WithDatalistOptions: Story;
export declare const WithErrorFeedback: Story;
export declare const ShadowDomParent: Story;
export declare const Migration: Story;
