/************************************************************************
 * Copyright (c) Amur
 * https://github.com/AmurKhoyetsyan/react-native-rnevents.git
 *
 * React native RNEvents
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *************************************************************************/

export interface Events {
    BackHandler(callback: any): void
    Keyboard(config: object): any
    Web(url: string): void
    Call(option: object): void
};

declare const RNEvents = Events;

export default RNEvents;