import type { EqBenchScoreResult } from './eqbench/scorer.js'; export type CliInput = { mode: 'help'; } | { mode: 'missing'; } | { mode: 'stdin'; } | { mode: 'file'; filePath: string; }; export declare function getCliInput(args: string[]): CliInput; export declare function getInterpretation(slopScore: number): string; export declare function renderScoreOutput(result: EqBenchScoreResult): string; //# sourceMappingURL=cliHelpers.d.ts.map