/**
 * Creates a surface from multiple curves
 *
 *
 */
import { CADSopNode } from './_BaseCAD';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { SopType } from '../../poly/registers/nodes/types/Sop';
import { CoreGroup } from '../../../core/geometry/Group';
declare class CADLoftSopParamsConfig extends NodeParamsConfig {
    /** @param create solid */
    solid: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.BOOLEAN>;
}
export declare class CADLoftSopNode extends CADSopNode<CADLoftSopParamsConfig> {
    readonly paramsConfig: CADLoftSopParamsConfig;
    static type(): SopType;
    protected initializeNode(): void;
    cook(inputCoreGroups: CoreGroup[]): void;
}
export {};
