import { MalloyRendererOptions } from './types'; import { RenderPluginFactory } from './plugin-types'; import { MalloyViz } from './malloy-viz'; export declare class MalloyRenderer { private globalOptions; private pluginRegistry; constructor(options?: MalloyRendererOptions); createViz(additionalOptions?: Partial): MalloyViz; updateOptions(newOptions: Partial): void; getOptions(): MalloyRendererOptions; getRegisteredPlugins(): RenderPluginFactory[]; }