import React from "react"; export type ComboboxSlotComponent = React.FC & Record; export declare function createComboboxSlotSystem(markerKey: MarkerKey): { assignSlot: (component: React.FC, slot: Slot) => ComboboxSlotComponent; createSlot: (slot: Slot) => ComboboxSlotComponent; isSlotElement: (child: React.ReactNode) => child is React.ReactElement>; };