export declare class VerificationResult {
    captchaId: string;
    verificationId: string;
    verificationPassed: boolean;
    score: number;
    decisionType: string;
    decisionAction: string;
    gatewayFailoverActive: boolean;
    riskScoringEnabled: boolean;
    minimalDataModeEnabled: boolean;
    origin: string;
    ipAddress: string;
    countryCode: string;
    deviceFamily: string;
    operatingSystem: string;
    browser: string;
    verificationStartedAt: string;
    verificationFinishedAt: string;
    resultExpiresAt: string;
    resultFirstFetchedAt: string;
    resultLastFetchedAt: string;
    constructor(data: {
        captchaId: string;
        verificationId: string;
        verificationPassed: boolean;
        score: number;
        decisionType: string;
        decisionAction: string;
        gatewayFailoverActive: boolean;
        riskScoringEnabled: boolean;
        minimalDataModeEnabled: boolean;
        origin: string;
        ipAddress: string;
        countryCode: string;
        deviceFamily: string;
        operatingSystem: string;
        browser: string;
        verificationStartedAt: string;
        verificationFinishedAt: string;
        resultExpiresAt: string;
        resultFirstFetchedAt: string;
        resultLastFetchedAt: string;
    });
    static fromObject(data: any): VerificationResult;
}
