import type { Generic } from 'adopted-style-sheets';
import type { InputEmailProps, InputEmailWatches, MaxLengthBehaviorPropType, MultiplePropType } from '../../schema';
import { InputTextEmailController } from '../input-text/controller';
export declare class InputEmailController extends InputTextEmailController implements InputEmailWatches {
    protected readonly component: Generic.Element.Component & InputEmailProps;
    constructor(component: Generic.Element.Component & InputEmailProps, name: string, host?: HTMLElement);
    validateMultiple(value?: MultiplePropType): void;
    validateMaxLengthBehavior(value?: MaxLengthBehaviorPropType): void;
    componentWillLoad(): void;
}
