import React from "react"; import { Slot } from "../../slot/Slot"; interface ListboxInputSlotProps { children: React.ReactElement; } const ListboxInputSlot = ({ children }: ListboxInputSlotProps) => { return ( , but Slot doesn't know that. autoComplete="off" role="combobox" > {children} ); }; export { ListboxInputSlot }; export type { ListboxInputSlotProps };