import { AccountTransaction } from './AccountTransaction'; /** * Information for account screening by Expedia\'s Fraud Prevention Service. */ export declare class AccountScreenRequest { transaction: AccountTransaction; constructor(accountScreenRequest: AccountScreenRequestProperties); } export interface AccountScreenRequestProperties { transaction: AccountTransaction; }