import { ComponentRef, ComponentFactory, ApplicationRef, ComponentFactoryResolver } from '@angular/core';
import { CustomKeyboard } from '../custom-keyboard/custom-keyboard.component';
export declare class CustomInputService {
    private _appRef;
    private _cfr;
    static compRef: ComponentRef<any>;
    static appRef: ApplicationRef;
    static isShow: boolean;
    static clickValue: any;
    static _inputCompFactory: ComponentFactory<CustomKeyboard>;
    static _keyboardPrefixCls: string;
    constructor(_appRef: ApplicationRef, _cfr: ComponentFactoryResolver);
    static getShowStatus(): boolean;
    static showKeyboard(): void;
    static hideKeyboard(): void;
}
