import { Scene } from '@antv/l7'; import { ICursor, ICursorType } from '../typings'; export declare class Cursor { container: HTMLDivElement | null; cursor: ICursorType | null; options: ICursor; constructor(scene: Scene, options: ICursor); setCursor(cursor: ICursorType | null): void; destroy(): void; }