import StoriesPlayerSyncService from '../abstract/storiesPlayerSyncService'; import type { ViewTheme } from '../../infrastructure/api/types'; export interface IListViewBaseProps { basename: string; displayLimit?: number; useGoogleWebStoryUrls: boolean; isReadUnreadOrderingEnabled: boolean; mediaType: 'stories' | 'clips'; collection?: string; currentCategories?: string[]; storiesPlayerSyncService?: StoriesPlayerSyncService; viewTheme: ViewTheme; }