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