import type { StoryObj } from '@storybook/react'; import { Heading } from '../../components/Typography/Heading'; declare const meta: { title: string; component: typeof Heading; tags: string[]; }; export default meta; type Story = StoryObj; export declare const Primary: Story;