declare const checkOrthogonal: (p1: any, p2: any, p3: any) => boolean; declare const getDefaultBoard: (maximumColumn: number | undefined, maximumRow: number | undefined, selectedValue: any) => Array[]>; declare const getExpandMatrix: (oldMatrix: Array[]>, coefficient?: number) => Array[]>; declare const getExpandMatrixPlus: (oldMatrix: Array[]>, coefficient?: number) => Array[]>; declare const getBestWayBetweenTwoPoint: (matrix: any, pointA: any, pointB: any) => Record[][] | undefined; declare const getPositionNode: (cell: any, sizeCollection: any) => { x: number; y: number; w: any; h: any; }; declare const getDataLineProperties: (path: any, sizeCollection?: {}) => { line: string; circle: Record; }; declare const getOriginalPositionNode: (position: any, coefficient: any) => { x: number; y: number; } | { x: null; y: null; }; declare const getCurrentPositionNode: (position: any, coefficient: any) => { x: number; y: number; } | { x: null; y: null; }; declare const compactPathConnection: (path: any[]) => any[]; export { getDefaultBoard, getExpandMatrix, checkOrthogonal, getBestWayBetweenTwoPoint, getPositionNode, getDataLineProperties, getOriginalPositionNode, getCurrentPositionNode, getExpandMatrixPlus, compactPathConnection };