import { type ICylinderColshape } from "../../common";
import { type IMockColshapeOptions, MockColshape } from "./MockColshape";
export interface IMockCylinderColshapeCreateOptions extends IMockColshapeOptions {
    height: number;
    range: number;
}
export declare class MockCylinderColshape extends MockColshape implements ICylinderColshape {
    constructor(options: IMockCylinderColshapeCreateOptions);
}
