import { Rect, RectShape } from 'zrender'; import { BaseShape } from '../types'; export type IRectOptions = BaseShape; /** * 创建矩形 * @param options * @returns */ export declare function createRect(options?: IRectOptions): Rect;