UNPKG

@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.

16 lines 557 B
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): React.ReactElement; export interface ComboboxValueState {} export interface ComboboxValueProps { children?: React.ReactNode | ((selectedValue: any) => React.ReactNode); } export declare namespace ComboboxValue { type State = ComboboxValueState; type Props = ComboboxValueProps; }