import { ExamCompletionSpecification } from "../../src/core"; import { Participant } from "./Participant"; export declare class ExamCompletion { readonly participant: Participant; readonly spec: ExamCompletionSpecification; private server_status; private statusElem; readonly isComplete: boolean; private checked_with_server; private pending_refresh; constructor(participant: Participant, statusElem: JQuery); private userChanged; refresh(): Promise; private checkCompletionWithServer; private isPastDeadline; private verify; updateStatus(): void; }