export declare class CostEstimateAssumptions { /** * If true, the cardholder is expected to successfully authorise via 3D Secure. */ "assume3DSecureAuthenticated"?: boolean; /** * If true, the transaction is expected to have valid Level 3 data. */ "assumeLevel3Data"?: boolean; /** * If not zero, the number of installments. */ "installments"?: number; 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(); }