import { StoryWithRowIndex } from './story'; import { Subset } from '../../../types/subset'; import { IUiTheme } from '../../configuration/models/theme/uiTheme'; import { UiStyle } from '../../configuration/models/uiStyle'; import { StorytellerListViewCellType } from '../../row/models/storytellerListViewCellType'; export declare class AmpStory { href: string; title: string; posterImage: string; constructor({ categories, cellType, initialPageId, story, uiTheme, uiStyle, useGoogleWebStoryUrls, }: { categories?: string[]; cellType: StorytellerListViewCellType; initialPageId?: string; story: StoryWithRowIndex; uiTheme: Subset; uiStyle: UiStyle; useGoogleWebStoryUrls: boolean; }); }