UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

10 lines (9 loc) 507 B
import { Assign } from '../../types'; import { HTMLProps, PolymorphicProps } from '../factory'; import { UseEditableProps } from './use-editable'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface EditableRootBaseProps extends UseEditableProps, PolymorphicProps { } export interface EditableRootProps extends Assign<HTMLProps<'div'>, EditableRootBaseProps> { } export declare const EditableRoot: ForwardRefExoticComponent<EditableRootProps & RefAttributes<HTMLDivElement>>;