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