import { StylableComponentProps } from '../theme' import { ScrollListState, ScrollListScrollState, ScrollListItem } from './reducers' export interface ScrollListProps extends StylableComponentProps { maxItemsToRender: number childHeight: number height?: string id: string } export interface ScrollListComponentProps extends ScrollListProps { scrollList: ScrollListState scrollListScroll: (a: string, b: ScrollListScrollState) => void scrollListUpdate: (a: string, b: Partial) => void children: any }