import { type ComboboxSlotComponent } from "./Combobox.slotFactory"; export type ComboboxContentSlotName = "empty" | "actions" | "footer" | "loading"; export type ComboboxContentSlotComponent = ComboboxSlotComponent; export declare const assignComboboxContentSlot: (component: import("react").FC, slot: Slot) => ComboboxSlotComponent; export declare const isComboboxContentSlotElement: (child: React.ReactNode) => child is import("react").ReactElement>;