/** * Linking.ts * * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT license. * * RN-specific implementation for deep linking. */ import { Types } from '../common/Interfaces'; import { Linking as CommonLinking } from '../common/Linking'; export declare class Linking extends CommonLinking { constructor(); protected _openUrl(url: string): Promise; getInitialUrl(): Promise; launchEmail(emailInfo: Types.EmailInfo): Promise; } declare const _default: Linking; export default _default;