/**
 * This estimator simply marks territory for whichever color has a
 * closer stone (Manhattan distance).  See discussion at
 * https://forums.online-go.com/t/weak-score-estimator-and-japanese-rules/41041/70
 */
export declare function voronoi_estimate_ownership(board: number[][]): number[][];
