/**
 * Create a new transfer for the given account.
 */
export declare function createBraleTransfer(accountId: string, transferData: any, token: string, idempotencyKey: string): Promise<any>;
/**
 * Retrieve a specific transfer by ID.
 */
export declare function getBraleTransferById(accountId: string, transferId: string, token: string): Promise<any>;
/**
 * Get all transfers associated with the specified account.
 */
export declare function listBraleTransfers(accountId: string, token: string): Promise<any>;
