interface IPoint {
    row: number;
    col: number;
}
export declare function aStarAlgorithm(start: IPoint, finish: IPoint, matrix: number[][]): any;
export {};
