import { type TypographyProps } from '../Typography'; export interface HeadlineProps extends TypographyProps { /** * Уровень заголовка (от 1 до 2). */ level?: '1' | '2'; } /** * Используется для подзаголовков. * * @see https://vkui.io/components/typography#headline */ export declare const Headline: ({ className, level, Component, normalize, inline, ...restProps }: HeadlineProps) => React.ReactNode; //# sourceMappingURL=Headline.d.ts.map