import { Statement } from '../../util/index.js'; import { Row } from '../../util/types.js'; export type Database = Pick; export declare class ElectricDatabase { #private; name: string; private sqlite3; private db; private constructor(); exec(statement: Statement): Promise; private execSql; getRowsModified(): number; static init(dbName: string, locateSqliteDist?: string | ((path: string) => string)): Promise; }