import { PostgreSQL, QueryWhere } from "./types";
interface QueryOpts {
    db: PostgreSQL;
    select: string[];
    table: string;
    where: QueryWhere;
    one: boolean;
}
export declare function query(opts: QueryOpts): Promise<any>;
export {};
