///
import { ListStoreBase } from "../store-base";
import { LineProps } from "./line";
import { ListWithoutStyle } from "./list";
export interface StoreListProps {
hasSelection?: boolean;
selectionnableInitializer?: (data?: T) => boolean;
store: ListStoreBase;
}
export declare class StoreList> extends ListWithoutStyle> {
protected readonly data: T[];
protected readonly hasMoreData: boolean;
protected renderLines(): JSX.Element[];
protected handleShowMore(): void;
}