import { Line, LineShape } from 'zrender'; import { BaseShape } from '../types'; export type ILineOptions = BaseShape; /** * 创建直线 * @param options * @returns */ export declare function createLine(options?: ILineOptions): Line;