import type { VFile } from 'vfile'; import type { IndexEntry } from 'myst-spec-ext'; import type { GenericNode } from './types.js'; export type IndexTypeLists = { single: string[]; pair: string[]; triple: string[]; see: string[]; seealso: string[]; }; export declare function parseIndexLine(line: string, { single, pair, triple, see, seealso }: IndexTypeLists, vfile: VFile, node: GenericNode): void; export declare function splitEntryValue(entry: string): { emphasis: boolean; splitEntry: string[]; }; export declare function createIndexEntries({ single, pair, triple, see, seealso }: IndexTypeLists, vfile: VFile, node: GenericNode): IndexEntry[]; //# sourceMappingURL=indices.d.ts.map