import { Glide } from "./Glide"; import { Table } from "./Table"; import type { TableProps, ColumnSchema, AppProps, AppManifest } from "./types"; export declare class App { private props; private glide; get id(): string; get name(): string | undefined; constructor(props: AppProps, glide: Glide); /** * Retrieves a table by its name. * * @param name - The name of the table to retrieve. * @returns A promise that resolves to the table if found, or undefined. */ getTableNamed(name: string): Promise