/** * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { Primitive } from './primitive.js'; export declare const DefaultCircleProps: { radius: number; segments: number; thetaStart: number; thetaLength: number; }; export type CirclerProps = Partial; export declare function Circle(props?: CirclerProps): Primitive;