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