import { FC, ReactNode } from 'react';
export interface NodeConfigurationSectionProps {
    title?: string;
    children: ReactNode;
    collapsible?: boolean;
    defaultCollapsed?: boolean;
    className?: string;
}
/**
 * NodeConfigurationSection component for organizing configuration UI
 * Provides consistent layout and optional collapsible behavior
 */
export declare const NodeConfigurationSection: FC<NodeConfigurationSectionProps>;
//# sourceMappingURL=NodeConfigurationSection.d.ts.map