import type { RefObject } from "react"; import { type ComboboxOption } from "../Combobox.types"; interface useComboboxContent { optionsListRef: RefObject; onClear?: () => void; onSelectAll?: (selection: ComboboxOption[]) => void; } export declare function useComboboxContent(open: boolean, selected: ComboboxOption[]): useComboboxContent; export {};