/** * @name WebIntent * @description * @usage * For usage information please refer to the plugin's Github repo. * * ```typescript * import {WebIntent} from 'ionic-native'; * * WebIntent.startActivity(options).then(onSuccess, onError); * * ``` */ export declare class WebIntent { static ACTION_VIEW: any; static EXTRA_TEXT: any; /** * @param options {Object} { action: any, url: string, type?: string } * @returns {Promise} */ static startActivity(options: { action: any; url: string; type?: string; }): Promise; /** * @param extra {any} * @returns {Promise} */ static hasExtra(extra: any): Promise; /** * @param extra {any} * @returns {Promise} */ static getExtra(extra: any): Promise; /** * @returns {Promise} */ static getUri(): Promise; /** * @returns {Promise} */ static onNewIntent(): Promise; /** * @param options {Object} { action: string, extras?: { option: boolean } } * @returns {Promise} */ static sendBroadcast(options: { action: string; extras?: { option: boolean; }; }): Promise; }