import type { Meta, StoryObj } from '@storybook/react'; import { UseTimerExample } from '../components/UseTimerExample'; declare const StoryComponent: typeof UseTimerExample; declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Example: Story;