import { NamespaceAdapter } from '../index.js'; type QueryExecutor = (sql: string, params: unknown[]) => Promise<{ rows: Record[]; }>; declare function createRawAdapter(execute: QueryExecutor): NamespaceAdapter; export { createRawAdapter };