import { Model } from 'sequelize'; export declare class PostgresConnector implements IRouteGenerator.IDatabaseConnector { private database; constructor(database: Model); find(query: any | undefined): Promise; findById(id: string): Promise; create(body: JSON): Promise; update(id: string, body: JSON, _options?: any): Promise; delete(id: string): Promise; }