export class AuroInput extends BaseInput { /** * This will register this element with the browser. * @param {string} [name="auro-input"] - The name of element that you want to register to. * * @example * AuroInput.register("custom-input") // this will register this element to * */ static register(name?: string): void; /** * @private */ private iconTag; /** * @private */ private buttonTag; /** * Function to determine if the input is meant to render an icon visualizing the input type. * @private * @returns {boolean} - Returns true if the input type is meant to render an icon. */ private hasTypeIcon; isDateType(): boolean; render(): import("lit-html").TemplateResult; } import BaseInput from './base-input.js'; //# sourceMappingURL=auro-input.d.ts.map