import type { HighlightOptions, ShikiHighlighter, ShikiOptions } from "./types"; export declare const createHighlighter: Fn>; export declare const createOptions: Fn>; export declare function resolveOptions(shikiOptions: ShikiOptions, highlightOptions?: Partial): HighlightOptions; type Fn = (...args: any[]) => T; type MaybePromise = T | Promise; export {};