import { IPoint } from "./core";
import { Grid } from "./Grid";
export declare function astar(grid: Grid, x1: number, y1: number, x2: number, y2: number): IPoint[] | undefined;
