import { BaseSopOperation } from './_Base';
import { CoreGroup } from '../../../core/geometry/Group';
import { InputCloneMode } from '../../poly/InputCloneMode';
import { DefaultOperationParams } from '../../../core/operations/_Base';
import { Vector3 } from 'three';
interface AxesHelperSopParams extends DefaultOperationParams {
    center: Vector3;
}
export declare class AxesHelperSopOperation extends BaseSopOperation {
    static readonly DEFAULT_PARAMS: AxesHelperSopParams;
    static readonly INPUT_CLONED_STATE = InputCloneMode.NEVER;
    static type(): Readonly<'axesHelper'>;
    cook(input_contents: CoreGroup[], params: AxesHelperSopParams): CoreGroup;
}
export {};
