import type { T3 } from '@devvit/shared'; export type ShareSheetOpts = { /** Data to share. Must be 1024 characters or less. */ data?: string | undefined; /** Title of share sheet. */ title?: string | undefined; /** Body text of share sheet. */ text?: string | undefined; /** Post to share. If not provided, a link to the current post will be shared. */ post?: T3 | undefined; }; /** Show the native share sheet or copy to clipboard depending on device. */ export declare function showShareSheet(opts: Readonly): Promise; export declare function getShareData(): string | undefined; //# sourceMappingURL=share.d.ts.map