import * as React from 'react';
import './List.Scrolling.Example.scss';
export interface IListScrollingExampleProps {
    items: any[];
}
export interface IListScrollingExampleState {
    selectedIndex: number;
}
export declare class ListScrollingExample extends React.Component<IListScrollingExampleProps, IListScrollingExampleState> {
    private _list;
    constructor(props: any);
    render(): JSX.Element;
    private _scrollRelative(delta);
    private _scroll(index);
    private _resolveList(list);
}
