export type ShikiService = {
codeToHtml(code: string, { lang, theme, }: {
lang: 'sql' | 'typescript' | 'graphql' | 'csharp' | 'java' | 'kotlin' | 'scala';
theme?: 'dark' | 'light';
}): Promise;
};
export declare function setGetShikiServiceCallback(callback: () => ShikiService | null): void;
export declare function getShikiService(): ShikiService | null;