UNPKG

@hadyfayed/filament-workflow-canvas

Version:

Visual workflow builder and canvas component for Filament applications

14 lines 496 B
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