/** * Loads an svg file from a url. * * */ import { TypedSopNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { CoreGroup } from '../../../core/geometry/Group'; import { ModuleName } from '../../poly/registers/modules/_BaseRegister'; declare class SvgSopParamsConfig extends NodeParamsConfig { /** @param url to load the geometry from */ url: import("../utils/params/ParamsConfig").ParamTemplate; /** @param reload the geometry */ reload: import("../utils/params/ParamsConfig").ParamTemplate; /** @param toggle on to draw the fillShapes */ drawFillShapes: import("../utils/params/ParamsConfig").ParamTemplate; /** @param toggle on to draw the fillShapes as wireframe */ fillShapesWireframe: import("../utils/params/ParamsConfig").ParamTemplate; /** @param toggle on to draw the strokes */ drawStrokes: import("../utils/params/ParamsConfig").ParamTemplate; /** @param toggle on to draw the strokes as wireframe */ strokesWireframe: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class SvgSopNode extends TypedSopNode { params_config: SvgSopParamsConfig; static type(): string; requiredModules(): Promise; initializeNode(): void; private _operation; cook(input_contents: CoreGroup[]): Promise; static PARAM_CALLBACK_reload(node: SvgSopNode): void; private param_callback_reload; } export {};