/**
 * Parses a table name through the SQL parser so all supported identifier
 * syntaxes (quoted, bracketed, backtick) converge to a consistent key.
 */
export declare const normalizeTableName: (tableName: string) => string;
/**
 * For schema-sensitive matching we no longer drop qualifiers; a single
 * normalized key is sufficient and safer than heuristic variants.
 */
export declare const tableNameVariants: (tableName: string) => string[];
