import type App from '../app/index.js'; export interface MouseHandlerOptions { disableClickmaps?: boolean; /** * how many ticks to wait before capturing mouse position * (can affect performance) * 1 tick = 30ms * default 7 = 210ms * */ trackingOffset?: number; customAttributes?: string[]; } export default function (app: App, options?: MouseHandlerOptions): void; export declare function getCSSPath(el: any): string | false;