import { Theme } from '../theme';
import { PolarPoint } from '../utils';
import { Board } from './board';
/**
 * Draw a dartboard to the canvas
 * @param board Board dimensions
 * @param theme Theme to style the board
 * @param context Canvas context to draw the board to
 */
export declare const drawBoard: (board: Board, theme: Theme, hits: PolarPoint[], context: CanvasRenderingContext2D) => void;
