import { SortPagination } from "../models/SortPagination"; declare class PostgresWrapper { private postgrePromise; private dbConfig; constructor(); any(query: string): Promise; anyWhere(tableName: string, sortFilterPagin?: SortPagination, whereStmt?: string, whereParams?: any[]): Promise; oneOrNoneWhere(tableName: string, whereStmt?: string, whereParams?: any[]): Promise; oneOrNone(query: string): Promise; delete(tableName: string, whereStmt: string, whereParams?: any[]): Promise; execFunction(functionName: string, params?: any[]): Promise; getCountFrom(tableName: string, whereStmt?: string, whereParams?: any[]): Promise; execNone(statement: string, params?: any[]): Promise; private buildSelectStatement; } export declare const postgresWrapper: PostgresWrapper; export {};