/** * Creation of sub-components of the waterfall chart */ import { Context } from "../../typing/context"; /** * Renders the time-scale SVG elements (1sec, 2sec...) * @param {Context} context Execution context object * @param {number} durationMs Full duration of the waterfall */ export declare function createTimeScale(context: Context, durationMs: number): SVGGElement;