export type ComboboxProps = { id?: string; values?: string[]; initialValue?: string; }; export declare const Combobox: ({ values, ...rest }: ComboboxProps) => import("react/jsx-runtime").JSX.Element;