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