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