type Options<Schema> = {
    schema: Schema;
    out?: string;
    relational?: boolean;
};

declare function pgGenerate<T>(options: Options<T>): string;

declare function mysqlGenerate<T>(options: Options<T>): string;

declare function sqliteGenerate<T>(options: Options<T>): string;

export { mysqlGenerate, pgGenerate, sqliteGenerate };
