export declare const mark: (name: string, markOptions?: { startTime?: number; }) => void; /** * Clears all marks whose name starts with the given prefix. */ export declare const clearMarks: (prefix: string) => void; export interface PerformanceMark { readonly name: string; readonly startTime: number; } /** * Returns all marks, sorted by `startTime`. */ export declare const getMarks: () => PerformanceMark[];