import type { ComboboxWatches, ComboboxProps, SuggestionsPropType } from '../../schema';
import { InputIconController } from '../@deprecated/input/controller-icon';
import type { Generic } from 'adopted-style-sheets';
export declare class ComboboxController extends InputIconController implements ComboboxWatches {
    protected readonly component: Generic.Element.Component & ComboboxProps;
    constructor(component: Generic.Element.Component & ComboboxProps, name: string, host?: HTMLElement);
    validatePlaceholder(value?: string): void;
    validateRequired(value?: boolean): void;
    validateSuggestions(value?: SuggestionsPropType): void;
    validateValue(value?: string): void;
    componentWillLoad(): void;
}
