import { Command as CommandPrimitive } from "cmdk"; import { BaseOption, BaseRecord, UseSelectReturnType } from "@refinedev/core"; import { ComponentPropsWithoutRef } from "react"; type ComboboxProps = Omit, "onChange|onValueChange|value"> & UseSelectReturnType & { placeholder?: string; emptyMessage?: string; onChange?: (value: string | number) => void; value?: string | number | BaseRecord; }; export declare const Combobox: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export {}; //# sourceMappingURL=combobox.d.ts.map