export declare const ETH_DECIMAL = 18;
interface IntToDecimal {
    amount: number;
    decimals?: number;
}
export declare const intToDecimal: ({ amount, decimals }: IntToDecimal) => bigint;
interface DecimalToInt {
    amount: bigint;
    decimals?: number;
}
export declare const decimalToInt: ({ amount, decimals }: DecimalToInt) => number;
export {};
