UNPKG

494 BTypeScriptView Raw
1import * as React from 'react';
2import type { BlockProps } from './Base';
3declare const TITLE_ELE_LIST: [1, 2, 3, 4, 5];
4export interface TitleProps extends Omit<BlockProps<'h1' | 'h2' | 'h3' | 'h4' | 'h5'>, 'strong'>, Omit<React.HTMLAttributes<HTMLHeadElement>, 'type' | keyof BlockProps<'h1' | 'h2' | 'h3' | 'h4' | 'h5'>> {
5 level?: typeof TITLE_ELE_LIST[number];
6}
7declare const Title: React.ForwardRefExoticComponent<TitleProps & React.RefAttributes<HTMLElement>>;
8export default Title;