import { ComponentPropsWithoutRef, ReactNode } from 'react'; export type ComboboxLegacyListProps = ComponentPropsWithoutRef<"ul" | "div"> & { children?: ReactNode; }; export declare const ComboboxLegacyList: ({ children, ...rest }: ComboboxLegacyListProps) => import("react/jsx-runtime").JSX.Element;