import type { Generic } from 'adopted-style-sheets';
import type { AcceptPropType, InputFileProps, InputFileWatches, MultiplePropType, RequiredPropType } from '../../schema';
import { InputIconController } from '../@deprecated/input/controller-icon';
export declare class InputFileController extends InputIconController implements InputFileWatches {
    protected readonly component: Generic.Element.Component & InputFileProps;
    constructor(component: Generic.Element.Component & InputFileProps, name: string, host?: HTMLElement);
    validateAccept(value?: AcceptPropType): void;
    validateMultiple(value?: MultiplePropType): void;
    validateRequired(value?: RequiredPropType): void;
    componentWillLoad(): void;
}
