import React from 'react'; import { TextProps as AntdTextProps } from 'antd/es/typography/Text'; declare const TEXT_LEVEL_LIST: [1, 2, 3, 4]; export interface TextProps extends AntdTextProps { onClick?: (e?: React.MouseEvent) => void; level?: typeof TEXT_LEVEL_LIST[number]; } declare const Text: React.FC; export default Text;