import { Asset } from '../asset';
import { Action } from '../action';
/**
 * Balance of power strategy.
 *
 * @param asset asset object.
 * @return strategy actions.
 */
export declare function bopStrategy(asset: Asset): Action[];
export { bopStrategy as balanceOfPowerStrategy };
