import { type IRageWorldObjectOptions, RageWorldObject } from "../worldObject/RageWorldObject";
import { type IVector3D } from "../../../../shared";
export interface IRageColshapeOptions extends IRageWorldObjectOptions<ColshapeMp> {
    position: IVector3D;
}
export declare abstract class RageColshape extends RageWorldObject<ColshapeMp> {
    protected constructor(options: IRageColshapeOptions);
}
