import type { SavepointSQL, SQL, TransactionSQL } from 'bun'; import { type Cache } from "../cache/core/index.js"; import type { WithCacheConfig } from "../cache/core/types.js"; import { entityKind } from "../entity.js"; import type { Logger } from "../logger.js"; import type { PgDialect } from "../pg-core/dialect.js"; import { PgTransaction } from "../pg-core/index.js"; import type { SelectedFieldsOrdered } from "../pg-core/query-builders/select.types.js"; import type { PgQueryResultHKT, PgTransactionConfig, PreparedQueryConfig } from "../pg-core/session.js"; import { PgPreparedQuery, PgSession } from "../pg-core/session.js"; import type { RelationalSchemaConfig, TablesRelationalConfig } from "../relations.js"; import { type Query } from "../sql/sql.js"; import { type Assume } from "../utils.js"; export declare class BunSQLPreparedQuery extends PgPreparedQuery { private client; private queryString; private params; private logger; private fields; private _isResponseInArrayMode; private customResultMapper?; static readonly [entityKind]: string; constructor(client: SQL, queryString: string, params: unknown[], logger: Logger, cache: Cache, queryMetadata: { type: 'select' | 'update' | 'delete' | 'insert'; tables: string[]; } | undefined, cacheConfig: WithCacheConfig | undefined, fields: SelectedFieldsOrdered | undefined, _isResponseInArrayMode: boolean, customResultMapper?: ((rows: unknown[][]) => T["execute"]) | undefined); execute(placeholderValues?: Record | undefined): Promise; all(placeholderValues?: Record | undefined): Promise; } export interface BunSQLSessionOptions { logger?: Logger; cache?: Cache; } export declare class BunSQLSession, TSchema extends TablesRelationalConfig> extends PgSession { client: TSQL; private schema; static readonly [entityKind]: string; logger: Logger; private cache; constructor(client: TSQL, dialect: PgDialect, schema: RelationalSchemaConfig | undefined, /** @internal */ options?: BunSQLSessionOptions); prepareQuery(query: Query, fields: SelectedFieldsOrdered | undefined, name: string | undefined, isResponseInArrayMode: boolean, customResultMapper?: (rows: unknown[][]) => T['execute'], queryMetadata?: { type: 'select' | 'update' | 'delete' | 'insert'; tables: string[]; }, cacheConfig?: WithCacheConfig): PgPreparedQuery; query(query: string, params: unknown[]): Promise; queryObjects(query: string, params: unknown[]): Promise; transaction(transaction: (tx: BunSQLTransaction) => Promise, config?: PgTransactionConfig): Promise; } export declare class BunSQLTransaction, TSchema extends TablesRelationalConfig> extends PgTransaction { static readonly [entityKind]: string; constructor(dialect: PgDialect, /** @internal */ session: BunSQLSession, schema: RelationalSchemaConfig | undefined, nestedIndex?: number); transaction(transaction: (tx: BunSQLTransaction) => Promise): Promise; } export interface BunSQLQueryResultHKT extends PgQueryResultHKT { type: Assume[]>; }