import { type ICuboidColshape } from "../../common";
import { type IMockColshapeOptions, MockColshape } from "./MockColshape";
export interface IMockCuboidColshapeCreateOptions extends IMockColshapeOptions {
    width: number;
    depth: number;
    height: number;
}
export declare class MockCuboidColshape extends MockColshape implements ICuboidColshape {
    constructor(options: IMockCuboidColshapeCreateOptions);
}
