import { type UseCodeHighlightProps } from "./use-code-highlight";
export interface CodeBlockAdapterProviderProps {
    children: React.ReactNode;
    value: UseCodeHighlightProps;
}
export declare function CodeBlockAdapterProvider(props: CodeBlockAdapterProviderProps): import("react/jsx-runtime").JSX.Element;
