import { LikeC4Model } from '@likec4/core/model'; import { PropsWithChildren } from 'react'; import { JSX } from 'react/jsx-runtime'; export interface LikeC4ModelProviderProps { likec4model: LikeC4Model; } /** * Ensures LikeC4Model context */ export declare function LikeC4ModelProvider({ children, likec4model, }: PropsWithChildren): JSX.Element;