import { EventEmitter, Renderer } from '@angular/core'; import { NavParams, Platform, NavController } from 'ionic-angular'; import { KeyboardOption } from '../type'; export declare class KeyboardSocialComponent { platform: Platform; navCtrl: NavController; renderer: Renderer; option: KeyboardOption; type: string; values: any[]; back: any; constructor(params: NavParams, platform: Platform, navCtrl: NavController, renderer: Renderer); onPresent: () => void; confirmEvent: EventEmitter<{}>; confirm: (value: any) => void; cancelEvent: EventEmitter<{}>; close: () => void; closeByBackdrop: (event: any) => void; bindEvents: () => void; unBindEvents: () => void; disableScroll: (e: any) => void; }