import { IStoryAction } from '../../row/components/list/models/storyAction'; import { StoryWithRowIndex } from '../models/story'; import { AmpStoryPlayer } from '../../../types/ampStories'; type HandleCustomStoryActionProps = { action: IStoryAction; categories: string[]; closeStoryView: () => void; currentStoryId?: string; goToStory?: AmpStoryPlayer['go']; playerStories: StoryWithRowIndex[] | null; }; export declare function handleCustomStoryAction({ action, categories, closeStoryView, currentStoryId, goToStory, playerStories, }: HandleCustomStoryActionProps): void; export {};