export declare type TypeCell = [number, number]; export declare type TypePath = TypeCell[]; export declare type TypePoint = TypeCell; export declare type TypeSnake = TypeCell[]; export declare type TypeValues = number[][]; export interface IEnvironment { path: TypePath; point: undefined | TypePoint; snake: TypeSnake; } export declare type TypeHistory = IEnvironment[]; //# sourceMappingURL=Types.d.ts.map