/// <reference types="react" />
import { ThemeProps } from "../../hooks/useHighlight";
import { DivProps } from "../../types";
export interface StaticRendererProps extends DivProps {
    children: string;
    language: string;
    enableTransformer?: boolean;
    theme?: ThemeProps;
}
export declare const StaticRenderer: import("react").NamedExoticComponent<StaticRendererProps>;
