import { GridPlugin } from '../../gridPlugin/gridPlugin.interface'; import { VisualPluginOptions } from '../../visualPluginOptions/visualPluginOptions.interface'; /** * Css classes for content renderer */ export interface CssClassesContentRenderer { } /** * Options for content renderer */ export interface ContentRendererOptions extends VisualPluginOptions { } /** * Renderer used for rendering (data) content */ export interface ContentRenderer extends GridPlugin { } //# sourceMappingURL=contentRenderer.interface.d.ts.map