import { Droplet, DropletShape } from 'zrender'; import { BaseShape } from '../types'; export type IDropletOptions = BaseShape; /** * 创建水滴 * @param options * @returns */ export declare function createDroplet(options?: IDropletOptions): Droplet;