export type SharingOptions = { /** * Sets `mimeType` for `Intent`. * @platform android */ mimeType?: string; /** * [Uniform Type Identifier](https://developer.apple.com/library/archive/documentation/FileManagement/Conceptual/understanding_utis/understand_utis_conc/understand_utis_conc.html) * - the type of the target file. * @platform ios */ UTI?: string; /** * Sets share dialog title. * @platform android * @platform web */ dialogTitle?: string; /** * set the anchor point for iPad * @platform ios */ anchor?: { x?: number; y?: number; width?: number; height?: number; }; }; /** * Determine if the sharing API can be used in this app. * @return A promise that fulfills with `true` if the sharing API can be used, and `false` otherwise. */ export declare function isAvailableAsync(): Promise; /** * Opens action sheet to share file to different applications which can handle this type of file. * @param url Local file URL to share. * @param options A map of share options. */ export declare function shareAsync(url: string, options?: SharingOptions): Promise; //# sourceMappingURL=Sharing.d.ts.map