import { ColumnValue } from 'tedious'; import { execSqlAsyncOptions } from '../extension-functions/types'; import { Dictionary } from '../types'; declare const mapSQLRows: (rows: ColumnValue[][], options?: execSqlAsyncOptions) => Dictionary[]; declare const mapSQLRowToJSON: (row: ColumnValue[]) => Dictionary; declare const addColumnAsJSONField: (jsonRow: Dictionary, column: ColumnValue) => Dictionary; export { mapSQLRows, mapSQLRowToJSON, addColumnAsJSONField };