import type { QueryArgs } from "../args.js"; /** * Executes a SQL statement against the initialized database and prints the result. * * @param args - Command arguments: `args.sql` is the SQL statement to execute; if `args.json` is true the result is printed as formatted JSON, otherwise the raw result is printed. */ export declare function runQuery(args: QueryArgs): Promise;