import { ComponentInstance, RootComponentInstance } from '@uniformdev/canvas'; import React, { PropsWithChildren } from 'react'; export { P as PureUniformText, a as PureUniformTextProps } from './PureUniformText-CzdaUBnC.js'; type PureContextualEditingComponentWrapperProps = { isPlaceholder: boolean | undefined; parentComponent: ComponentInstance | undefined; component: ComponentInstance | RootComponentInstance; slotName: string | undefined; indexInSlot: number | undefined; slotChildrenCount: number | undefined; isReadOnly: string | undefined; }; declare const PureContextualEditingComponentWrapper: ({ children, isPlaceholder, parentComponent, component, slotName, indexInSlot, slotChildrenCount, isReadOnly, }: PropsWithChildren) => React.JSX.Element; export { PureContextualEditingComponentWrapper, type PureContextualEditingComponentWrapperProps };