import * as React from 'react'; import { IUiTheme } from '../configuration/models/theme/uiTheme'; import { UiStyle } from '../configuration/models/uiStyle'; import { Subset } from '../../types/subset'; import { StorytellerListViewCellType } from '../row/models/storytellerListViewCellType'; export interface IStoryViewProps { cellType: StorytellerListViewCellType; initialStoryId?: string; basename: string; categories: string[]; playAllStories: boolean; uiTheme: Subset; uiStyle: UiStyle; useGoogleWebStoryUrls: boolean; viewId: string; } declare const StoryView: React.FunctionComponent; export default StoryView;