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);
    get key(): string | undefined;
    getNetData(name: string): unknown;
    setNetData(name: string, value: unknown): void;
}
