import * as abaplint from "@abaplint/core";
import { DatabaseSchemaGenerator } from "./database_schema_generator";
export declare class SQLiteDatabaseSchema implements DatabaseSchemaGenerator {
    private readonly reg;
    constructor(reg: abaplint.IRegistry);
    buildVIEW(view: abaplint.Objects.View): string;
    buildTABL(tabl: abaplint.Objects.Table): string;
    private toType;
}
