import { DiagramView, DynamicViewDisplayVariant, WhereOperator } from '@likec4/core/types'; import { PropsWithChildren } from 'react'; import { ViewPaddings } from '../../LikeC4Diagram.props'; export declare function DiagramActorProvider({ id, view, zoomable, pannable, nodesDraggable, nodesSelectable, fitViewPadding, where, children, dynamicViewVariant: _defaultVariant, }: PropsWithChildren<{ id: string; view: DiagramView; zoomable: boolean; pannable: boolean; nodesDraggable: boolean; nodesSelectable: boolean; fitViewPadding: ViewPaddings; where?: WhereOperator | null; dynamicViewVariant?: DynamicViewDisplayVariant | undefined; }>): import("react/jsx-runtime").JSX.Element;