import type { MdNode } from "../ast.js"; type OffsetMap = readonly number[]; export type ParseInlineOptions = { footnoteLabels?: ReadonlySet; allowLiteralAutolinks?: boolean; offset?: number; offsets?: OffsetMap; }; export declare function parseInline(raw: string, options?: ParseInlineOptions): MdNode[]; export {};