import { Meta, StoryObj } from '@storybook/web-components';
import { TypographyVariant, TypographyWeight } from './modus-wc-typography';
import { DaisySize } from '../types';
interface TypographyArgs {
    'custom-class'?: string;
    size?: DaisySize;
    variant: TypographyVariant;
    weight?: TypographyWeight;
}
declare const meta: Meta<TypographyArgs>;
export default meta;
type Story = StoryObj<TypographyArgs>;
export declare const Default: Story;
export declare const Body: 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;
