import { Surface } from "./Surface.ts"; import "../src/Cell.css"; export declare class Cell extends Surface { _indicateTheseIds: any; constructor(); indicateTheseIds(): any[]; indicateTheseIds(_: any[]): Cell; enter(domNode: any, element: any): void; update(domNode: any, element: any): void; onMouseEnter(): void; onMouseLeave(): void; } export interface Cell { gridRow(): number; gridRow(_: number): this; gridCol(): number; gridCol(_: number): this; gridRowSpan(): number; gridRowSpan(_: number): this; gridColSpan(): number; gridColSpan(_: number): this; indicatorGlowColor(): string; indicatorGlowColor(_: string): this; indicatorBorderColor(): string; indicatorBorderColor(_: string): this; indicatorOpacity(): number; indicatorOpacity(_: number): this; }