/** * @param {string} value * Code to highlight. * @param {Readonly} grammar * Grammar instance to use. * @param {ReadonlyArray} colors * Colors that are in the theme. * @returns {Root} * A hast root that includes basic ``s and text nodes. */ export function parse(value: string, grammar: Readonly, colors: ReadonlyArray): Root; import type { IGrammar } from 'vscode-textmate'; import type { Root } from 'hast'; //# sourceMappingURL=parse.d.ts.map