import type { NumOrString } from "@thi.ng/api";
import type { Canvas } from "./canvas.js";
/**
 * Draws a circle (filled or outline) at given center position and
 * radius and taking the current clip rect and format into account. If
 * `char` is not given, uses current style's `dot` char.
 *
 * @param canvas -
 * @param cx -
 * @param cy -
 * @param r -
 * @param char -
 * @param fill -
 */
export declare const circle: (canvas: Canvas, cx: number, cy: number, r: number, char?: NumOrString, fill?: boolean, format?: number) => void;
//# sourceMappingURL=circle.d.ts.map