import { PGliteOptions } from "@electric-sql/pglite";
import { PGlitePool } from "./pglite-pool";
export declare class PGliteDriver {
    constructor(options?: PGliteOptions);
    get driver(): {
        new (): {};
        Pool: typeof PGlitePool;
    };
}
