import { FC } from 'react';
export interface ToolbarProps {
    onAddNode: (type: string) => void;
    position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
    showNodeTypes?: string[];
    groupByCategory?: boolean;
    size?: 'sm' | 'md' | 'lg';
    title?: string;
}
/**
 * Toolbar component using composition and services
 * Provides dynamic node templates based on connection manager rules
 */
export declare const Toolbar: FC<ToolbarProps>;
//# sourceMappingURL=Toolbar.d.ts.map