import { TableInfo } from "../sql-context-evaluator"; interface ObjectChild { name: string; dataType: any; } export declare function getObjectChildren(obj: Record, parentName?: string): ObjectChild[]; export declare function findColumnPathForPrefix(tables: TableInfo[], brokenPrefix: string[]): string; export declare function getSearchCompletion(tables: TableInfo[], prefix: string | undefined): any; export declare function getNextLevel(tables: TableInfo[], prefix: string | undefined): any; export {};