import { Device } from "../Device"; export declare const onconnect: (dataDevice: Device) => Promise; export declare class Webgazer { device: any | null; callbacks: Function[]; constructor(); handleScriptLoad: (onload: Function) => Promise; checkWebGazerLoaded: (onload: Function) => void; startWebgazer(webgazer: any): void; connect: () => Promise; disconnect: () => void; subscribe: (f: Function) => void; }