// (C) 2007-2020 GoodData Corporation /* eslint-disable */ declare module "@gooddata/goodstrap/lib/List/SingleSelectList" { interface ISingleSelectListProps { className?: string; height: number; itemHeight: number; items?: any[]; itemsCount?: number; listItemClass?: any; onItemMouseOut?: (...args: any[]) => void; onItemMouseOver?: (...args: any[]) => void; onItemMouseEnter?: (...args: any[]) => void; onItemMouseLeave?: (...args: any[]) => void; onRangeChange?: (...args: any[]) => void; onScrollStart?: (...args: any[]) => void; onSelect?: (...args: any[]) => void; rowItem?: any; selection?: any; width: number; } export default class SingleSelectList extends React.Component {} }