import { Fee } from './Fee'; export declare class PayOutResponse { amount: number; orderNo: string; orderId: string; fee: Fee; orderStatus: string; message: string; status: string; constructor(amount: number, orderNo: string, orderId: string, fee: Fee, orderStatus: string, message: string, status: string); }