import * as React from 'react'; import { StorytellerListViewCellType } from '../models/storytellerListViewCellType'; import { RowViewAttributes } from '../models/rowViewAttributes'; import { ListViewAttributes } from '../models/listViewAttributes'; import StorytellerStoriesListView from './storytellerStoriesView'; import { ListConfiguration } from '../../configuration/models/listConfiguration'; type StorytellerStoriesRowViewListConfiguration = ListConfiguration<'StorytellerStoriesRowView'>; declare class StorytellerStoriesRowView extends StorytellerStoriesListView { protected logTag: string; /** * @deprecated Use `configuration` instead. */ set cellType(type: StorytellerListViewCellType); set configuration(configuration: Partial); get configuration(): StorytellerStoriesRowViewListConfiguration; protected parseAttributes(baseAttributes: ListViewAttributes): RowViewAttributes; protected renderList(): React.JSX.Element; } export default StorytellerStoriesRowView;