/**
 * Creates a point at the center of each input objects
 *
 *
 */
import { TypedSopNode } from './_Base';
import { CoreGroup } from '../../../core/geometry/Group';
import { CenterMode } from '../../operations/sop/Center';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
declare class CenterSopParamsConfig extends NodeParamsConfig {
    mode: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>;
}
export declare class CenterSopNode extends TypedSopNode<CenterSopParamsConfig> {
    paramsConfig: CenterSopParamsConfig;
    static type(): string;
    initializeNode(): void;
    private _operation;
    cook(input_contents: CoreGroup[]): void;
    setMode(mode: CenterMode): void;
}
export {};
