import * as React from 'react'; import { ListViewAttributes } from '../models/listViewAttributes'; import { RowViewAttributes } from '../models/rowViewAttributes'; import { StorytellerListViewCellType } from '../models/storytellerListViewCellType'; import StorytellerClipsView from './storytellerClipsView'; import { ListConfiguration } from '../../configuration/models/listConfiguration'; type StorytellerClipsListConfiguration = ListConfiguration<'StorytellerClipsRowView'>; declare class StorytellerClipsRowView extends StorytellerClipsView { protected logTag: string; set cellType(type: StorytellerListViewCellType); protected parseAttributes(baseAttributes: ListViewAttributes): RowViewAttributes; set configuration(configuration: Partial); get configuration(): StorytellerClipsListConfiguration; protected renderList(): React.JSX.Element; } export default StorytellerClipsRowView;