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