import { default as React } from 'react'; import { VariantProps } from 'class-variance-authority'; declare const pageTitleVariants: (props?: ({ variant?: "hero" | "h1" | "h2" | "h3" | "display" | null | undefined; responsive?: boolean | null | undefined; align?: "center" | "left" | "right" | null | undefined; color?: "default" | "muted" | "vibrant" | "brand" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; interface PageTitleProps extends VariantProps { children: React.ReactNode; className?: string; as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; } export declare const PageTitle: React.FC; declare const sectionTitleVariants: (props?: ({ variant?: "h2" | "h3" | "h4" | "h5" | "h6" | null | undefined; spacing?: "none" | "sm" | "md" | "lg" | "xl" | null | undefined; align?: "center" | "left" | "right" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; interface SectionTitleProps extends VariantProps { children: React.ReactNode; className?: string; as?: 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; } export declare const SectionTitle: React.FC; declare const bodyTextVariants: (props?: ({ variant?: "small" | "body" | "caption" | "lead" | "large" | null | undefined; color?: "primary" | "default" | "muted" | null | undefined; align?: "center" | "justify" | "left" | "right" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; interface BodyTextProps extends VariantProps { children: React.ReactNode; className?: string; as?: keyof React.JSX.IntrinsicElements; } export declare const BodyText: React.FC; declare const textLinkVariants: (props?: ({ variant?: "default" | "button" | "muted" | "subtle" | null | undefined; external?: boolean | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; interface TextLinkProps extends VariantProps { children: React.ReactNode; href: string; className?: string; target?: string; rel?: string; } export declare const TextLink: React.FC; export {}; //# sourceMappingURL=typography.d.ts.map