import { MutableRefObject } from 'react'; import { Page } from '../../stories/models/page'; import { StoryWithRowIndex } from '../../stories/models/story'; type UsePlayerShareProps = { currentStory: MutableRefObject; currentPage: MutableRefObject; setIsSharing: (isSharing: boolean) => void; }; export declare const usePlayerShare: ({ currentStory, currentPage, setIsSharing, }: UsePlayerShareProps) => { handleShare: (formattedInternalDeeplink: string, sharingText: string) => void; }; export {};