interface ListTablesOptions { format?: 'table' | 'json' | 'nushell'; } interface CreateTableOptions { data?: string; firstRowHeader?: boolean; } interface UpdateTableOptions { name: string; } /** * List tables from a Baserow database */ export declare function listTables(database: number | undefined, options?: ListTablesOptions): Promise; /** * Get a specific table by ID */ export declare function getTable(tableId: number, options?: ListTablesOptions): Promise; /** * Create a new table in a Baserow database */ export declare function createTable(database: number | undefined, name: string, options?: CreateTableOptions): Promise; /** * Update an existing table in Baserow */ export declare function updateTable(tableId: number, options: UpdateTableOptions): Promise; /** * Delete a table from Baserow */ export declare function deleteTable(tableId: number): Promise; export {};