import { Field } from '../core/ast';
export declare function textToSqlite(text: string): {
    up: string;
    down: string;
};
export declare function toSqliteColumnSql(field: Field): string;
export declare function wrapSqliteName(name: string): string;
