import type * as ast from './ast';
export type Column = {
    table: string;
    field: string;
};
export declare function generateQuery(columns: Column[], tableList: ast.Table[]): {
    tsType: string;
    sql: string;
    knex: string;
};
