import Connection from '../../index'; import { Dictionary } from '../../types'; import { execSqlAsyncOptions } from '../types'; declare const execSqlAsync: (connection: Connection) => (sqlString: string, options?: execSqlAsyncOptions) => Promise; export default execSqlAsync;