import { default as styles } from './LargeTitle.module.css'; import { TypographyProps } from '../Typography'; export { styles as LargeTitleClasses }; export type LargeTitleProps = TypographyProps; /** * The LargeTitle component is designed for prominent display text, typically used for major headings * or titles within an application. It encapsulates the Typography component's features, offering * extensive styling and semantic customization options while defaulting to an `

` HTML element. * This choice of default component underscores the importance and hierarchy of the text it encapsulates, * making it suitable for primary page titles or significant headings. */ export declare const LargeTitle: ({ className, Component, ...restProps }: LargeTitleProps) => JSX.Element;