import { Select as SelectPrimitive } from '@base-ui/react/select'; import { SelectContextValue, SelectLabeledItem } from './type'; import * as React from "react"; declare function resolveSelectedLabel(value: unknown, { items, itemToStringLabel, isItemEqualToValue }: SelectContextValue): any; declare function resolveSelectedItem(value: unknown, selectContext: SelectContextValue): SelectLabeledItem; declare function reactNodeToString(node: React.ReactNode): string; declare function createRemoveEventDetails(event: React.MouseEvent): SelectPrimitive.Root.ChangeEventDetails; export { createRemoveEventDetails, reactNodeToString, resolveSelectedItem, resolveSelectedLabel, };