import { TableRefNode } from '../ast/table-ref.js'; import { MaybeArray } from '../types.js'; /** * Returns a named table or view reference. * @param ids Table and namespace identifiers. * For example 'name' or ['schema', 'name']. * @returns A table reference or undefined if the input list is empty. */ export declare function tableRef(...ids: MaybeArray[]): TableRefNode | undefined; //# sourceMappingURL=table-ref.d.ts.map