import { BigNumberish } from 'ethers'; /** * A constant that represents converted one hundred percent for calculation suitable on Blockchain. * This defines a calculation scale for percentage values as two decimals. * For example: 1 is 0.01%, 100 is 1%, 10_000 is 100%. * Max floating point decimals: 2. */ export declare const HUNDRED_PERCENT_CONVERTED_SCALE_2 = 10000; export declare const HUNDRED_PERCENT = 100; export declare const convertPercentageToProtocolUint16: (percentRaw: string) => BigNumberish; export declare const deConvertPercentageFromProtocolUint16: (percentConverted: BigNumberish) => string; //# sourceMappingURL=percentage-conversion.d.ts.map