export type EvalExtractOptions = { out?: string; previewChars?: number; /** Pretty-print the output JSON. True by default. */ pretty?: boolean; }; /** CLI entry point for `agency eval extract`. */ export declare function evalExtract(file: string, opts?: EvalExtractOptions): Promise;