import { ReactNode } from 'react';
import { MermaidProps } from './type';
export interface MermaidFullFeaturedProps extends Omit<MermaidProps, 'children'> {
    children: ReactNode;
    content: string;
}
export declare const MermaidFullFeatured: import("react").NamedExoticComponent<MermaidFullFeaturedProps>;
export default MermaidFullFeatured;
