import Path, { PathProps } from '../Path'; export declare class DropletShape { cx: number; cy: number; width: number; height: number; } export interface DropletProps extends PathProps { shape?: Partial; } declare class Droplet extends Path { shape: DropletShape; constructor(opts?: DropletProps); getDefaultShape(): DropletShape; buildPath(ctx: CanvasRenderingContext2D, shape: DropletShape): void; } export default Droplet;