import { Question } from "survey-core";
import { SelectBase } from "./selectBase";
import { BooleanModel } from "./boolean";
import "./statistics-table.scss";
export declare class StatisticsTableAdapter {
    private model;
    constructor(model: SelectBase);
    create(container: HTMLElement): Promise<void>;
    destroy(node: HTMLElement): void;
}
export declare class StatisticsTable extends SelectBase {
    private _statisticsTableAdapter;
    constructor(question: Question, data: Array<{
        [index: string]: any;
    }>, options?: Object, name?: string);
    protected destroyContent(container: HTMLElement): void;
    protected renderContentAsync(container: HTMLElement): Promise<HTMLElement>;
    destroy(): void;
}
export declare class StatisticsTableBoolean extends BooleanModel {
    private _statisticsTableAdapter;
    constructor(question: Question, data: Array<{
        [index: string]: any;
    }>, options?: Object, name?: string);
    protected destroyContent(container: HTMLElement): void;
    protected renderContentAsync(container: HTMLElement): Promise<HTMLElement>;
    destroy(): void;
}
