import { type ISphereColshape } from "../../common";
import { type IMockColshapeOptions, MockColshape } from "./MockColshape";
export interface IMockSphereColshapeCreateOptions extends IMockColshapeOptions {
    range: number;
}
export declare class MockSphereColshape extends MockColshape implements ISphereColshape {
    constructor(options: IMockSphereColshapeCreateOptions);
}
