import { Remote } from 'comlink'; import { ShikiHighlightedHtmlArgs } from '../shiki'; type HighlightFn = (props: ShikiHighlightedHtmlArgs) => string | undefined | Promise; type ShikiWorkerInstance = Remote<{ highlight: HighlightFn; ready: () => Promise; }> | undefined; declare function getShikiWorker(): ShikiWorkerInstance; export { getShikiWorker }; //# sourceMappingURL=worker-client.d.ts.map