///
import type { StoryObj } from '@storybook/react';
declare const meta: {
title: string;
component: ({ children, className, leading, size, variant, tag, weight, ...props }: {
children: import("react").ReactNode;
className?: string | undefined;
leading: "tight" | "snug" | "normal" | "relaxed" | "loose" | "8" | "7" | "6" | "5" | "4" | "3" | "2" | "1" | "075" | "050" | "025";
size: "3xs" | "2xs" | "xs" | "sm" | "base" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl";
variant: "display" | "body" | "heading";
tag: "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "div" | "span";
weight: "bold" | "semibold" | "medium" | "regular" | "light";
'data-typography'?: "heading" | undefined;
}) => import("react").JSX.Element;
tags: string[];
};
export default meta;
type Story = StoryObj;
export declare const Primary: Story;