import type { SelectProps } from '../../../../types/select'; /*** Resolves controlled or uncontrolled Select value state and the selected option. */ export declare function useSelectController(props: SelectProps): { readonly select: (nextValue: TValue) => void; readonly selectedOption: import("../public").SelectOption | undefined; readonly value: TValue | undefined; }; //# sourceMappingURL=useSelectController.d.ts.map