export class Force {
    draw(context: any): void;
    getLegends(context: any): {
        id: string;
        colorScale: any;
        title: string;
    }[];
    getName(): string;
    hasTooltip(): boolean;
    hasToggle(): boolean;
    hasSelect(): boolean;
}
