import { ReactNode } from 'react';
import { HighlighterProps } from './type';
interface HighlighterFullFeaturedProps extends Omit<HighlighterProps, 'children' | 'bodyRender' | 'enableTransformer'> {
    content: string;
}
export declare const HighlighterFullFeatured: import("react").NamedExoticComponent<HighlighterFullFeaturedProps & {
    children: ReactNode;
}>;
export default HighlighterFullFeatured;
