import { ElementType, ForwardedRef } from 'react';
export type ComboboxProperties = {
    /** @ignore */
    className?: string;
    /** Tag of the component */
    tag?: ElementType;
};
/**
 * Dropdown menu enabling users to enter text or select items from a list.
 * @docs {@link https://design.visa.com/react/components/combobox | See Docs}
 * @related dropdown-menu
 * @vgar TODO
 * @wcag TODO
 */
declare const _default: <HTMLElementType = HTMLDivElement>(props: {
    children?: import("react").ReactNode | import("react").ReactNode[];
    ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & ComboboxProperties) => import("react").ReactElement;
export default _default;
