import { SharePayload, ShareResponse, ShowPeerSessionRequestPayload } from '../../payload.types'; /** * Dispatch iOS sharing dialog. * * @example * api.share({text: "example text", subject: "example subject"}) */ export declare function share(payload: SharePayload): Promise; /** * Show peer session dialog with button coordinates, for local peer sharing feature. * * @example * api.showPeerSession({x: 100, y: 200}) */ export declare function showPeerSession(payload: ShowPeerSessionRequestPayload): Promise;