import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable";
import { DataConsistencyResult } from "./DataConsistencyResult";
import type { VerificationResultJSON } from "../SerializedTypes";
export declare class VerificationResult implements Serializable<VerificationResultJSON> {
    protected json: VerificationResultJSON | null;
    get dataConsistency(): DataConsistencyResult | null;
    private static fromJSON;
    toJSONObject(): VerificationResultJSON;
}
