import { WithdrawalFee } from './pojo/withdrawal_fee';
/**
 * Get withdrawal fee of the symbol.
 *
 * @param symbol The symbol name
 * @param platform The platform, optional
 * @returns WithdrawalFee or undefined
 */
export declare function getWithdrawalFee(symbol: string, platform?: string): WithdrawalFee | undefined;
