import { Input } from './Input'; export declare class InlineInput implements Input { private readonly solutionFiles; /** * Create a new solution reference * * @param rootDir the path to the root directory of the solution * @param exercise the exercise this solution belongs to */ constructor(solutionFiles: string[]); /** * Read the solution file(s) * * @param n number of files to return * @returns promise that resolves all the files at once */ read(n?: number): Promise; informativeBail(): Promise; }