import { SelectBase } from "./selectBase";
import { QuestionRankingModel } from "survey-core";
export declare class RankingModel extends SelectBase {
    constructor(question: QuestionRankingModel, data: Array<{
        [index: string]: any;
    }>, options?: any, name?: string);
    getQuestionResults(): any[];
    getEmptyData(): any;
    protected getCalculatedValuesCore(): Array<any>;
    applyResultToPlotlyData(result: any[], plotlyData: any, choices: any): void;
}
