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;
}