import { Meta, StoryObj } from '@storybook/web-components';
import { TypographyHierarchy, TypographySize, TypographyWeight } from '../types';
interface TypographyArgs {
    'custom-class'?: string;
    hierarchy: TypographyHierarchy;
    label: string;
    size?: TypographySize;
    weight?: TypographyWeight;
}
declare const meta: Meta<TypographyArgs>;
export default meta;
type Story = StoryObj<TypographyArgs>;
export declare const Default: Story;
export declare const Heading1: Story;
export declare const Heading2: Story;
export declare const Heading3: Story;
export declare const Heading4: Story;
export declare const Heading5: Story;
export declare const Heading6: Story;
export declare const Paragraph: Story;
export declare const WithLabel: Story;
export declare const WithSlot: Story;
export declare const ShadowDomParent: Story;
