import { Star, StarShape } from 'zrender'; import { BaseShape } from '../types'; export type IStarOptions = BaseShape; /** * 创建星形 * @param options * @returns */ export declare function createStar(options?: IStarOptions): Star;