import { BigNumberish, BytesLike } from 'ethers'; import { ITaxTermsRegistry } from '../../../../typechain/contracts/tax/tax-terms-registry/TaxTermsRegistry'; import TaxTermsStruct = ITaxTermsRegistry.TaxTermsStruct; export declare const makeFixedRateTaxTermsFromUnconverted: (baseTaxRatePercentRaw: string) => TaxTermsStruct; export declare const encodeFixedRateTaxTermsForUnconverted: (baseTaxRatePercentRaw: string) => BytesLike; export declare const decodeFixedRateTaxTermsToUnconverted: (fixedRateTaxTermsEncoded: BytesLike) => { baseTaxRatePercentRaw: string; }; export declare const decodeFixedRateTaxTermsToProtocolConverted: (fixedRateTaxTermsEncoded: BytesLike) => { baseTaxRatePercentProtocolUint16: BigNumberish; }; //# sourceMappingURL=helpers.d.ts.map