import { type TextProps } from './text'; type TypographyProps = TextProps & { asChild?: boolean; }; declare function H1({ className, asChild, ...props }: TypographyProps): import("react/jsx-runtime").JSX.Element; declare function H2({ className, asChild, ...props }: TypographyProps): import("react/jsx-runtime").JSX.Element; declare function H3({ className, asChild, ...props }: TypographyProps): import("react/jsx-runtime").JSX.Element; declare function H4({ className, asChild, ...props }: TypographyProps): import("react/jsx-runtime").JSX.Element; declare function P({ className, asChild, ...props }: TypographyProps): import("react/jsx-runtime").JSX.Element; declare function BlockQuote({ className, asChild, ...props }: TypographyProps): import("react/jsx-runtime").JSX.Element; declare function Code({ className, asChild, ...props }: TypographyProps): import("react/jsx-runtime").JSX.Element; declare function Lead({ className, asChild, ...props }: TypographyProps): import("react/jsx-runtime").JSX.Element; declare function Large({ className, asChild, ...props }: TypographyProps): import("react/jsx-runtime").JSX.Element; declare function Small({ className, asChild, ...props }: TypographyProps): import("react/jsx-runtime").JSX.Element; declare function Muted({ className, asChild, ...props }: TypographyProps): import("react/jsx-runtime").JSX.Element; export { BlockQuote, Code, H1, H2, H3, H4, Large, Lead, Muted, P, Small };