import type { MPS } from '../parseMPS.ts'; /** * Adds key value pair to result object * @param result - the result object we are populating * @param lines - the file as array of lines * @param i - the current index because we will update it * @param kV - the current key value pair * @returns `[newObject, newIndex]` tuple */ export declare function addKeyValueToResult(result: MPS, lines: string[], i: number, kV: string[]): [MPS, number]; //# sourceMappingURL=addKeyValueToResult.d.ts.map