export declare class ValidationResult {
    /**
    * The result of the check.  Possible values:  - **valid**: The validation was successful.  - **invalid**: The validation failed.  - **notValidated**: The validation was not performed because some services were unreachable or Adyen does not have the information needed to perform the check.  - **notApplicable**: The validation is not applicable.
    */
    "result"?: string;
    /**
    * Type of check.
    */
    "type"?: string;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
