import * as React from 'react';
import { Input } from '../Input/Input.js';
import type { PolymorphicForwardRefComponent } from '../../utils/index.js';
type ComboBoxInputProps = {
    selectTags?: React.JSX.Element[];
} & React.ComponentProps<typeof Input>;
export declare const ComboBoxInput: PolymorphicForwardRefComponent<"input", ComboBoxInputProps>;
export {};
