/**
 * Creates a point at the center of each input objects
 *
 *
 */
import { TypedSopNode } from './_Base';
import { CoreGroup } from '../../../core/geometry/Group';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
declare class CenterSopParamsConfig extends NodeParamsConfig {
}
export declare class CenterSopNode extends TypedSopNode<CenterSopParamsConfig> {
    params_config: CenterSopParamsConfig;
    static type(): string;
    initializeNode(): void;
    private _operation;
    cook(input_contents: CoreGroup[]): void;
}
export {};
