import { Term } from "@rdfjs/types/data-model";
import { StoreModel } from "../../rdf/StoreModel";
export declare class StatisticsReader {
    protected store: StoreModel;
    constructor(store: StoreModel);
    hasStatistics(shape: Term): boolean;
    getDistinctObjectsCountForShape(shape: Term): number | undefined;
    getTriplesCountForShape(shape: Term): number | undefined;
    getEntitiesCountForShape(shape: Term): number | undefined;
}
