import pg from 'pg'; /** * Helper class to interact with the database */ export declare class DatabaseHelper { /** * DB instance */ static db: pg.Client; /** * Connect to the database */ static load(): Promise; }