import { AfterViewInit, EventEmitter } from '@angular/core';
import Keyboard from 'simple-keyboard';
export declare class TimepickerNumpadComponent implements AfterViewInit {
    keyboard: Keyboard;
    keyPressed: EventEmitter<{}>;
    constructor();
    ngAfterViewInit(): void;
    onKeyPress: (button: string) => void;
}
