export declare function useShiki(): {
    loading: import("vue").Ref<boolean, boolean>;
    renderShiki: (content: string, { lang, theme }: {
        lang: string;
        theme: string;
    }) => string;
    initShiki: () => Promise<void>;
};
