import { type ICCMPColshapeOptions, CCMPColshape } from "./CCMPColshape";
import { type ICircleColshape } from "../../common/colshape/ICircleColshape";
export interface ICCMPCircleColshapeOptions extends ICCMPColshapeOptions {
}
export declare class CCMPCircleColshape extends CCMPColshape implements ICircleColshape {
    constructor(options: ICCMPCircleColshapeOptions);
}
