@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
13 lines (12 loc) • 552 B
text/typescript
import { HTMLProps, PolymorphicProps } from '../factory';
import { UseFieldReturn } from './use-field';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
interface RootProviderProps {
value: UseFieldReturn;
}
export interface FieldRootProviderBaseProps extends RootProviderProps, PolymorphicProps {
}
export interface FieldRootProviderProps extends HTMLProps<'div'>, FieldRootProviderBaseProps {
}
export declare const FieldRootProvider: ForwardRefExoticComponent<FieldRootProviderProps & RefAttributes<HTMLDivElement>>;
export {};