import { ShapeOptions } from './shape-options';
export interface CircleOptions extends ShapeOptions {
    radius?: number;
}
