import { Asset } from '../asset';
import { Action } from '../action';
/**
 * Typical price strategy function.
 *
 * @param asset asset object.
 * @return strategy actions.
 */
export declare function typpriceStrategy(asset: Asset): {
    actions: Action[];
    result: number[];
};
export { typpriceStrategy as typicalPriceStrategy };
