
package.dist.components.select.select-root-provider.d.cts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react Show documentation
Show all versions of react Show documentation
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
The newest version!
import { JSX } from 'react';
import { CollectionItem } from '../collection';
import { HTMLProps, PolymorphicProps } from '../factory';
import { UsePresenceProps } from '../presence';
import { UseSelectReturn } from './use-select';
interface RootProviderProps {
value: UseSelectReturn;
}
export interface SelectRootProviderBaseProps extends RootProviderProps, UsePresenceProps, PolymorphicProps {
}
export interface SelectRootProviderProps extends HTMLProps<'div'>, SelectRootProviderBaseProps {
}
export type SelectComponent = (props: SelectRootProviderProps & React.RefAttributes) => JSX.Element;
export declare const SelectRootProvider: SelectComponent;
export {};
© 2015 - 2025 Weber Informatics LLC | Privacy Policy