import { CueAuth } from './auth'; export interface ProjectTable { id: string; title: string; columnDefs: Record[]; rowDef: string; } export declare class CueTables { private readonly _auth; private readonly _gatewayUrl; constructor(_auth: CueAuth, _gatewayUrl: string); listTables(projectId: string): Promise; saveTables(tables: ProjectTable[] | unknown[], projectId: string): Promise; }