type ShareParams = { url: string; text: string; title: string; toast?: { show: (msg: string) => void; }; }; export declare const clipboardShare: (params: ShareParams) => void; export declare const mobileShare: (params: ShareParams) => void; export declare const share: (params: ShareParams) => void; export {};