import { default as React, PropsWithChildren } from 'react'; type TypographyProps = { /** * The HTML tag. * @default "p" */ as?: C; /** * The type of content. */ type?: "body" | "heading"; /** * The font weight. */ weight?: "regular" | "semibold" | "medium" | "bold"; /** * The t-shirt size of the content. */ size?: "xs" | "sm" | "md" | "lg" | "xl"; /** * The CSS class name. */ className?: string; } & React.ComponentPropsWithoutRef; export declare const Typography: ({ as, children, type, weight, size, className, ...restProps }: PropsWithChildren>) => React.ReactElement; export {}; //# sourceMappingURL=Typography.d.ts.map