import { IRenderable, IRenderer, ISpecification } from '../../../api'; import { BaseInput } from "../BaseInput"; /** * Implementation of the 'email' markup element. * An input HTML element is created of type email with * the given attributes name, placeholder and value. The * class lto-email is added to allow CSS manipulations. * * @see {@link IRenderable} */ export declare class Email extends BaseInput implements IRenderable { constructor(spec: ISpecification); /** * @inheritDoc */ render(renderer: IRenderer, isNested: boolean): HTMLElement; }