You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
326 B

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