import { Field, Table } from '../core/ast';
export type SchemaRow = {
    name: string;
    sql: string;
    type: string;
};
export declare function parseTableSchema(rows: SchemaRow[]): Table[];
export declare function parseCreateTable(sql: string): Field[] | null;
