/** * Run a query using the native SQLite async API. * @param {import("sqlite3").Database & {getAllAsync: (sql: string) => Promise>[]>}} connection - SQLite connection instance. * @param {string} sql - SQL string to execute. * @returns {Promise>[]>} - Resolves with the result rows. */ export default function query(connection: import("sqlite3").Database & { getAllAsync: (sql: string) => Promise>[]>; }, sql: string): Promise>[]>; //# sourceMappingURL=query.native.d.ts.map