export declare function start({ teacherName, studentUid, password, timeout, callback, }: {
    teacherName: string;
    studentUid: string;
    password: string;
    timeout?: number;
    callback?: Function;
}): Promise<() => void>;
