import { EventEmitter, OnInit } from '@angular/core'; import { Layout, LayoutsType } from '../utils/layouts'; import * as i0 from "@angular/core"; export declare class NumericKeyboardComponent implements OnInit { layout: KeyboardOptions['layout']; entertext: string; press: EventEmitter; enterpress: EventEmitter; kp: KeyboardOptions; ks: { resolvedLayout: Layout; }; ENTER: string; DEL: string; ESC: string; ngOnInit(): void; dispatch(event: string, payload?: number | string): void; onTouchend(key: any): void; private init; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export interface KeyboardOptions { layout: keyof LayoutsType | Layout; entertext: string; }