import { default as styles } from './Headline.module.css'; import { TypographyProps } from '../Typography'; export { styles as HeadlineClasses }; export type HeadlineProps = TypographyProps; /** * The Headline component serves as a wrapper for text that is intended to be displayed prominently, * typically used for section headings or important titles within the application. It leverages the Typography * component for consistent typographic styling, offering a range of customization options through its props. * The component defaults to an `
` HTML tag, providing semantic meaning and ensuring good SEO practices, * but can be customized as needed. */ export declare const Headline: ({ className, Component, ...restProps }: HeadlineProps) => JSX.Element;