/**
 * Creates a axes helper.
 *
 *
 *
 */
import { TypedSopNode } from './_Base';
import { CoreGroup } from '../../../core/geometry/Group';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { SopType } from '../../poly/registers/nodes/types/Sop';
declare class AxesHelperSopParamsConfig extends NodeParamsConfig {
    /** @param center of the geometry */
    center: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.VECTOR3>;
}
export declare class AxesHelperSopNode extends TypedSopNode<AxesHelperSopParamsConfig> {
    paramsConfig: AxesHelperSopParamsConfig;
    static type(): SopType;
    initializeNode(): void;
    private _operation;
    cook(input_contents: CoreGroup[]): void;
}
export {};
