export declare const TransactionsResponse: { status: boolean; transactions: ({ id: number; order_id: string; status: string; receiving_account_number: string; receiving_account_bank: string; memo: null; memo_type: null; email_address: null; type: string; asset_code: string; expires_at: string; created_at: string; phone: string; amount: string; account: string; transaction_id: string; external_transaction_id: string; kind: string; refunds?: undefined; } | { id: number; order_id: string; status: string; receiving_account_number: string; receiving_account_bank: string; memo: null; memo_type: null; email_address: null; type: string; asset_code: string; expires_at: string; created_at: string; phone: string; amount: string; account: string; transaction_id: string; external_transaction_id: string; refunds: { amount_refunded: string; amount_fee: string; payments: { id: string; id_type: string; amount: string; fee: string; }[]; }; kind: string; })[]; };