/** Spector debug initialization options */ type SpectorProps = { /** Canvas to monitor */ canvas?: HTMLCanvasElement | OffscreenCanvas; /** Whether debug is enabled. Auto-detected if ommitted */ debug?: boolean; /** Whether spector is disabled */ spector?: boolean | string | object; }; declare global { var SPECTOR: any; } /** Loads spector from CDN if not already installed */ export declare function loadSpectorJS(props?: SpectorProps): Promise; export declare function initializeSpectorJS(props?: SpectorProps): any; export {}; //# sourceMappingURL=spector.d.ts.map