import { type PgPool, type PostgresJsSql } from "./postgres"; import { type BunSql, type DialectConfig, type QueryExecutor, type SqlDialect } from "./types"; export declare const GrepTimeDialectConfig: DialectConfig; export declare class GrepTimeDialect implements SqlDialect { readonly executor: QueryExecutor; readonly config: DialectConfig; constructor(options: { client: PgPool | PostgresJsSql | BunSql; }); }