/** * Loads a geometry from a url. * * @remarks * Note that this node will automatically use a specific loader depending on the extension of the url. * */ import { TypedSopNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { CoreGroup } from '../../../core/geometry/Group'; declare class FileSopParamsConfig 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; } export declare class FileSopNode extends TypedSopNode { params_config: FileSopParamsConfig; static type(): string; requiredModules(): Promise; initializeNode(): void; private _operation; cook(input_contents: CoreGroup[]): Promise; static PARAM_CALLBACK_reload(node: FileSopNode): void; private param_callback_reload; } export {};