import { Client } from '../client'; import { Value, EventCallback } from '../types'; import { Subscription } from 'rxjs'; export declare class Cell { private _client; workspaceId: string; coreId: string; tableId: string; columnId: string; rowId: string; value: Value | undefined; constructor(client: Client | undefined, workspaceId: string, coreId: string, tableId: string, columnId: string, rowId: string, value?: Value); onCellUpdated(cb: EventCallback): Subscription; on(cb: EventCallback): Subscription; } export declare class CellArray { private _client; cells: Cell[]; constructor(client: Client, cells: Cell[]); onCellUpdated(cb: EventCallback): Subscription[]; on(cb: EventCallback): Subscription[]; }