import { OnInit } from '@angular/core'; export declare class InputComponent implements OnInit { ctx: Editable; value: string; message: string; isFocused: boolean; constructor(); ngOnInit(): void; isValid(): void; focus(): void; focusOut(): void; } export declare type InputTypes = 'text' | 'number'; export interface Editable { get: () => string; set: (val: string) => void; type?: InputTypes; isValid?: (val: string) => string; isDisabled?: () => boolean; isRequired?: boolean; placeholder: string; }