import type { DropdownHookProps, DropdownHookResult } from "./dropdownTypes"; export declare const useDropdownBase: ({ ariaLabelledBy: ariaLabelledByProp, defaultIsOpen, disabled, fullWidth: fullWidthProp, id, isOpen: isOpenProp, onOpenChange, onKeyDown: onKeyDownProp, openOnFocus, popupWidth: popupWidthProp, rootRef, width, }: DropdownHookProps) => DropdownHookResult;