import type { Data } from './Data'; import type { ParametersInternal } from '../types'; /** * Represents object that will handle generating html from the data */ export declare class View { data: Data; readonly params: ParametersInternal; private generatedHTML; constructor(data: Data, params: ParametersInternal); /** * This method returns the HTMLElement based on the data */ private drawData; /** * This method returns the generated HTMLElement */ getGeneratedHTML(): HTMLElement; } //# sourceMappingURL=View.d.ts.map