import { Text } from "@codemirror/state"; import { DateTime } from "luxon"; import { Caches } from "./Cache.js"; import { type ParseResult } from "./Types.js"; export type ParseTimings = { total: number; lines: number; header: number; body: number; }; export declare function profileParse(timelineString?: string | string[] | Text, cache?: Caches | true, now?: DateTime | string): { parseResult: ParseResult; timings: ParseTimings; };