export type PoolClient = {
    release: (result?: boolean) => void;
    query: (sql: string) => any;
    end: () => any;
};
