import Decimal from 'decimal.js-light'; export declare function getAmountFromUNI(amount: any): string; export declare function getAmountToUNI(amount: any): string; export declare function calculateSaleReturn({ volume, reserve, crr, inputSellAmount }: { volume: any; reserve: any; crr: any; inputSellAmount: any; }): Decimal | number; export declare function getDelegationPrice({ volume, reserve, crr, delegated }: { volume: any; reserve: any; crr: any; delegated: any; }, shifted?: boolean): string; export declare function getCoinPrice({ volume, reserve, crr }: { volume: any; reserve: any; crr: any; }, shifted?: boolean): string;