import { Point } from "./Point";
export declare class Cell {
    private _state;
    private _position;
    constructor(x: number, y: number);
    readonly position: Point;
    readonly isAlive: boolean;
    die(): void;
    live(): void;
}
//# sourceMappingURL=Cell.d.ts.map