import type { Connector } from "db0"; import type { DatabaseSync } from "node:sqlite"; export interface ConnectorOptions { cwd?: string; path?: string; name?: string; } export default function nodeSqlite3Connector(opts: ConnectorOptions): Connector;