import type { TableType } from '../../lib/Api'; /** * Helper to get table metadata using composite key pattern (baseId:tableId) * Falls back to tableId-only lookup for backward compatibility * * @param metas - Record of table metadata keyed by composite key or tableId * @param baseId - Base ID for composite key lookup * @param tableId - Table ID to look up * @returns Table metadata or undefined */ export declare function getMetaWithCompositeKey(metas: Record, baseId: string | undefined, tableId: string): TableType | undefined;