import { Model } from '../model'; export declare class SQLModel extends Model { static sql: string; static get queryInterface(): import("sequelize").QueryInterface; static sync(): Promise; private static parseTablesAndColumns; private static getTableNameWithSchema; static inferFields(): { [field: string]: { type: string; source: string; collection: string; interface: string; }; }; }