import { AbstractPaymentCreditRequestDto } from "./AbstractPaymentCreditRequestDto"; import { OptionParam } from "../OptionParam"; import { IRequestDto } from "../../tgMdk/IRequestDto"; import { FraudDetectionV2RequestDto } from "../FraudDetectionV2/FraudDetectionV2RequestDto"; export declare class CardNoAuthorizeFraudDetectionRequestDto extends AbstractPaymentCreditRequestDto implements IRequestDto { readonly serviceType: string; readonly serviceCommand: string; private _maskedLog; constructor(); orderId: string; amount: string; cardNumber: string; cardExpire: string; fraudDetectionV2Request: FraudDetectionV2RequestDto; optionParams: OptionParam[]; get maskedLog(): string; set maskedLog(value: string); }