import { BigNumberish, BytesLike } from 'ethers'; import { ITaxTermsRegistry } from '../../../../typechain/contracts/tax/tax-terms-registry/TaxTermsRegistry'; import TaxTermsStruct = ITaxTermsRegistry.TaxTermsStruct; export declare const makeFixedRateWithRewardTaxTermsFromUnconverted: (baseTaxRatePercentRaw: string, rewardTaxRatePercentRaw: string) => TaxTermsStruct; export declare const encodeFixedRateWithRewardTaxTermsForUnconverted: (baseTaxRatePercentRaw: string, rewardTaxRatePercentRaw: string) => BytesLike; export declare const decodeFixedRateWithRewardTaxTermsToUnconverted: (fixedRateWithRewardTaxTermsEncoded: BytesLike) => { baseTaxRatePercentRaw: string; rewardTaxRatePercentRaw: string; }; export declare const decodeFixedRateWithRewardTaxTermsToProtocolConverted: (fixedRateWithRewardTaxTermsEncoded: BytesLike) => { baseTaxRatePercentProtocolUint16: BigNumberish; rewardTaxRatePercentProtocolUint16: BigNumberish; }; //# sourceMappingURL=helpers.d.ts.map