import type { StoryObj } from '@storybook/react'; import * as React from 'react'; declare const meta: { title: string; component: React.FC; render: (args: import("@storybook/react").Args) => React.JSX.Element; args: { delayDuration: number; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Simplified: Story;