@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
14 lines • 440 B
TypeScript
import * as React from 'react';
/**
* The current value of the combobox.
* Doesn't render its own HTML element.
*
* Documentation: [Base UI Combobox](https://base-ui.com/react/components/combobox)
*/
export declare function ComboboxValue(props: ComboboxValue.Props): any;
export declare namespace ComboboxValue {
interface State {}
interface Props {
children?: React.ReactNode | ((selectedValue: any) => React.ReactNode);
}
}