import { type Client, type Config } from '@libsql/client/http'; import { type DrizzleConfig } from "../../utils.js"; import { type LibSQLDatabase } from "../driver-core.js"; export declare function drizzle = Record, TClient extends Client = Client>(...params: [ TClient | string ] | [ TClient | string, DrizzleConfig ] | [ (DrizzleConfig & ({ connection: string | Config; } | { client: TClient; })) ]): LibSQLDatabase & { $client: TClient; }; export declare namespace drizzle { function mock = Record>(config?: DrizzleConfig): LibSQLDatabase & { $client: '$client is not available on drizzle.mock()'; }; }