declare class CheckResult { ok: boolean; error?: { type: string; details: string; }; constructor(ok: boolean, type?: string, details?: string); } export default CheckResult;