import { ComponentProps, ElementType } from 'react'; type Alignment = "centered" | "justified" | "left" | "right"; type Size = 1 | 2 | 3 | 4 | 5 | 6 | 7; type TextWeight = "light" | "normal" | "medium" | "semibold" | "bold"; type Props = { tag?: T; alignment?: Alignment; size?: Size; capitalized?: boolean; lowercase?: boolean; uppercase?: boolean; italic?: boolean; underlined?: boolean; textweight?: TextWeight; }; export declare const Typography: ({ alignment, size, capitalized, lowercase, uppercase, italic, underlined, textweight, className, tag, ...props }: Props & Omit, keyof Props>) => import("react/jsx-runtime").JSX.Element; export {};