import { AltVWorldObject, type IAltVWorldObjectOptions } from "../worldObject/AltVWorldObject";
import Colshape = AltVServer.Colshape;
export interface IAltVColshapeOptions extends IAltVWorldObjectOptions<Colshape> {
}
export declare abstract class AltVColshape extends AltVWorldObject<Colshape> {
    protected constructor(options: IAltVColshapeOptions);
    get key(): string | undefined;
    getNetData(name: string): unknown;
    setNetData(name: string, value: unknown): void;
}
