import { SDKToken } from './type'; export interface SimpleToken { symbol: string; name: string; } export declare function formatUnknownTokenSymbol(token?: SimpleToken | null): string; export declare function getShowDecimals(decimals: string | number): 6 | 4; export declare function convertLiquidityToken(token?: { id: string; symbol: string; name: string; decimals: number | string; logoImg?: string | null; logoUrl?: string; chainId?: number; }): SDKToken | undefined; //# sourceMappingURL=token.d.ts.map