import { StoryObj } from '@storybook/react-vite';
declare const meta: {
    title: string;
    component: import('react').ForwardRefExoticComponent<import('..').TimePickerProps & import('react').RefAttributes<HTMLDivElement>>;
    parameters: {
        layout: string;
    };
    tags: string[];
    argTypes: {
        value: {
            control: "text";
            description: string;
        };
        disabled: {
            control: "boolean";
            description: string;
        };
        error: {
            control: "boolean";
            description: string;
        };
    };
    args: {
        onChange: import('@vitest/spy').Mock<(...args: any[]) => any>;
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
export declare const Disabled: Story;
export declare const WithError: Story;
export declare const InvalidValue: Story;
//# sourceMappingURL=TimePicker.stories.d.ts.map