import { Theme } from '../theme';
import { Board } from '../utils';
/**
 * Draw the sectors of the board.
 * @param board Board dimensions
 * @param theme Theme to use for drawing
 * @param context HTML canvas context to draw to
 */
export declare const drawSectors: (board: Board.Board, theme: Theme, context: CanvasRenderingContext2D) => void;
