UNPKG

326 BTypeScriptView Raw
1import * as React from 'react';
2import { BlockProps } from './Base';
3import { Omit } from '../_util/type';
4declare const TITLE_ELE_LIST: [1, 2, 3, 4];
5export declare type TitleProps = Omit<BlockProps & {
6 level?: typeof TITLE_ELE_LIST[number];
7}, 'strong'>;
8declare const Title: React.FC<TitleProps>;
9export default Title;