import { type AST, type ColumnRef, type Join } from "node-sql-parser"; export declare function getTableName(expr: ColumnRef): string | null; export declare function getTableNamesFromWhere(ast: AST | AST[]): string[]; /** * 주의: table명이 아닌 alias를 반환함 */ export declare function getJoinTables(ast: AST | AST[], joinTypes: Join["join"][]): string[]; //# sourceMappingURL=sql-parser.d.ts.map