import { OnInit } from '@angular/core'; export declare class SingleInputComponent implements OnInit { /** * The placeholder to show in the input * @internal */ placeholder: string; /** * Allow to show a tooltip below the input, * Default value: false * @internal */ showTooltip: boolean; /** * Text to display if the showTooltip flag is set to true * @internal */ tooltipText: string; constructor(); ngOnInit(): void; }