import { NetworkTokenTriggeredRiskRule } from "./networkTokenTriggeredRiskRule";
export declare class NetworkTokenTransactionRulesResult {
    /**
    * The advice given by the Risk analysis.
    */
    "advice"?: string;
    /**
    * Indicates whether the transaction passed all rules with `outcomeType` **hardBlock**.
    */
    "allHardBlockRulesPassed"?: boolean;
    /**
    * The score of the Risk analysis.
    */
    "score"?: number;
    /**
    * Contains a list of all triggered transaction rules and the corresponding data.
    */
    "triggeredTransactionRules"?: Array<NetworkTokenTriggeredRiskRule>;
    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();
}
