import { ComponentPropsWithoutRef, ReactNode } from 'react'; /** * Props for the ComboboxGroupList component */ export type ComboboxGroupListProps = ComponentPropsWithoutRef<"ul" | "div"> & { children?: ReactNode; }; export declare const ComboboxGroupList: ({ children, ...rest }: ComboboxGroupListProps) => import("react/jsx-runtime").JSX.Element;