import type { InputRangeProps, InputRangeWatches, InputTypeOnOff, SuggestionsPropType } from '../../schema';
import { InputIconController } from '../@deprecated/input/controller-icon';
import type { Generic } from 'adopted-style-sheets';
export declare class InputRangeController extends InputIconController implements InputRangeWatches {
    protected readonly component: Generic.Element.Component & InputRangeProps;
    constructor(component: Generic.Element.Component & InputRangeProps, name: string, host?: HTMLElement);
    validateAutoComplete(value?: InputTypeOnOff): void;
    validateMax(value?: number): void;
    validateMin(value?: number): void;
    validateStep(value?: number): void;
    validateSuggestions(value?: SuggestionsPropType): void;
    validateValue(value?: number): void;
    componentWillLoad(): void;
}
