declare class LinkingProvider { constructor(); openURL(url: string, error: { title: string; message: string; }, checkSupport?: boolean): Promise; openBrowser(url: string, checkSupport?: boolean): Promise; openCallApp(tel: string): Promise; openSMSApp(tel: string): Promise; /** * @param email one or more recipient email addresses (separated by a "," or a ";") */ openMailApp(email: string, subject?: string, body?: string, to?: string, cc?: string, bcc?: string): Promise; openMapApp(address?: string, destination?: string, latitude?: number, longitude?: number, transportType?: string): Promise; openGoogleMapsDirections(pois: Array<{ address?: string; latitude?: number; longitude?: number; }>): Promise; } export declare const linkingProvider: LinkingProvider; export {};