import { Text, TextStyleProps } from 'zrender'; import { BaseShape } from '../types'; export type ITextOptions = BaseShape; /** * 创建文字 * @param options * @returns */ export declare function createText(options?: ITextOptions): Text;