@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
7 lines (6 loc) • 392 B
text/typescript
import { JsonNode } from '@zag-js/json-tree-utils';
import { TreeView } from '../tree-view';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface JsonTreeViewRootProviderProps extends TreeView.RootProviderProps<JsonNode> {
}
export declare const JsonTreeViewRootProvider: ForwardRefExoticComponent<JsonTreeViewRootProviderProps & RefAttributes<HTMLDivElement>>;