import { BigNumberish, BytesLike } from 'ethers'; import { IListingTermsRegistry } from '../../../../typechain/contracts/listing/listing-terms-registry/ListingTermsRegistry'; import ListingTermsStruct = IListingTermsRegistry.ListingTermsStruct; export declare const makeFixedRateWithRewardListingTermsFromUnconverted: (baseRateInBaseTokenEthers: string, rewardPercentRaw: string, decimals?: number) => ListingTermsStruct; export declare const encodeFixedRateWithRewardListingTermsForUnconverted: (baseRateInBaseTokenEthers: string, rewardPercentRaw: string, decimals: number) => BytesLike; export declare const decodeFixedRateWithRewardListingTermsToUnconverted: (fixedRateWithRewardListingTermsEncoded: BytesLike, decimals?: number) => { baseRateInBaseTokenEthers: string; rewardPercentRaw: string; }; export declare const decodeFixedRateWithRewardListingTermsToProtocolConverted: (fixedRateWithRewardListingTermsEncoded: BytesLike) => { baseRateInBaseTokenWei: BigNumberish; rewardPercentProtocolUint16: BigNumberish; }; //# sourceMappingURL=helpers.d.ts.map