import { ListType } from '../../common/types';
import ListAbstract, { ListAbstractProps } from './ListAbstract';
export type ListProps = ListAbstractProps & {
    list: ListType[];
};
export default class List extends ListAbstract {
    list: ListType[];
    constructor(props: ListProps);
}
