import { Icon, WaterfallEntry } from "../../typing/waterfall"; /** * Convinience helper to create a new `Icon` * * _Width of icons is fixed_ */ export declare function makeIcon(type: string, title: string): Icon; /** * Gets the Indicators in Icon format * @param {WaterfallEntry} entry * @returns {Icon[]} */ export declare function getIndicatorIcons(entry: WaterfallEntry): Icon[];