import * as React from 'react';
export interface VisualizerProps {
    /** The title of the visualizer. */
    title: string;
    /** The child nodes of the visualizer. */
    children?: React.ReactNode;
    /** CSS class name(s) to apply to the visualizer container. */
    className?: string;
}
export declare const Visualizer: React.ForwardRefExoticComponent<VisualizerProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=Visualizer.d.ts.map