import type { OutParams } from '../utility/getParamsFromText.ts'; import type { Technique } from '../utility/techniqueFromId.ts'; export interface LogAndSettings { settings: { variables: { technique: string; params: OutParams; flags: string[]; [key: string]: any; }; }; log: { variables: { flags: string[]; [key: string]: any; }; }; } /** * Parses log and settings modules of text files * @param lines - file as string[] * @param technique - the technique being processed, * used to format the parameters to MPR format * @returns JSON object representing the parsed data */ export declare function parseLogAndSettings(lines: string[], technique: Technique): LogAndSettings; //# sourceMappingURL=parseLogAndSettings.d.ts.map