import Table from "./table";
export default class Schema {
static create(tableName: string, tableCallback: (table: Table) => void, update?: boolean): Promise<any>;
static drop(tableName: string): Promise<any>;
static dropIfExists(tableName: string): Promise<any>;
}