import { EnhancedExecute } from '../../../../../utils/solidity/transactionFactory';
import { PriceInterface } from '@melonproject/token-math';
interface BuySell {
    buy: PriceInterface;
    sell: PriceInterface;
}
interface SetBaseRateArgs {
    prices: BuySell[] | PriceInterface[];
    blockNumber?: number;
}
declare type SetBaseRateResult = boolean;
declare const setBaseRate: EnhancedExecute<SetBaseRateArgs, SetBaseRateResult>;
export { setBaseRate };
