import * as React from 'react'; import StorytellerClipsView from './storytellerClipsView'; import { ListConfiguration } from '../../configuration/models/listConfiguration'; type StorytellerClipsPlayerConfiguration = ListConfiguration<'StorytellerClipsPlayerView'>; declare class StorytellerClipsPlayerView extends StorytellerClipsView { protected logTag: string; set configuration(configuration: Partial); get configuration(): StorytellerClipsPlayerConfiguration; protected renderList(): React.JSX.Element; protected renderStorytellerList(): void; } export default StorytellerClipsPlayerView;