import type { Input } from "./runTypes.js"; type MakeId = () => string; /** Loader options. `requireGoal` defaults to true (the default goal-judge needs * a goal); a custom grading module may not, so the optimize CLI passes false. */ type LoadOptions = { requireGoal?: boolean; }; export declare function inputFromGoal(goal: string): Input; export declare function loadInputs(sourcePath: string, makeId?: MakeId, options?: LoadOptions): Input[]; export declare function loadInputsFromFile(filePath: string, makeId?: MakeId, options?: LoadOptions): Input[]; export {};