/**
 * @param {string} code
 * @param {ParserOptions | undefined} parserOptions
 * @returns {{
 *   options: Parameters<ESHtmlParser["parse"]>[1];
 *   html: string;
 *   syntaxItems: { open: string; close: string; [key: string]: unknown }[];
 *   frontmatterOffset: number;
 * }}
 */
export function getOptions(code: string, parserOptions: ParserOptions | undefined): {
    options: Parameters<typeof ESHtmlParser.parse>[1];
    html: string;
    syntaxItems: {
        open: string;
        close: string;
        [key: string]: unknown;
    }[];
    frontmatterOffset: number;
};
import type { ParserOptions } from "./types";
import type ESHtmlParser from "es-html-parser";
//# sourceMappingURL=options.d.ts.map