import { Context } from "../../typing/context"; import { Mark } from "../../typing/waterfall"; /** * Renders global marks for events like the onLoad event etc * @param {Context} context Execution context object * @param {Mark[]} marks [description] */ export declare function createMarks(context: Context, marks: Mark[]): SVGGElement; /** * Converts a `Mark` with a duration (e.g. a UserTiming with `startTimer` and `endTimer`) into a rect. * @param {Context} context Execution context object * @param {Mark} entry Line entry */ export declare function createLineRect(context: Context, entry: Mark): SVGGElement;