import { Field, Table } from '../core/ast';
export declare function toKnexCreateColumnTypeCode(field: Field, db_client: string): string;
export declare function toKnexDefaultValueCode(field: Field): string;
export declare function toKnexNullableCode(field: Field): string;
export declare function toKnexCreateColumnCode(field: Field, db_client: string): string;
export declare function toKnexCreateTableCode(table: Table, db_client: string): string;
export declare function textToKnex(text: string, db_client: string): string;
