import type { EvalRecord, EvalValue } from "../eval/types.js"; export declare function _evalValue(value: unknown): Promise; export declare function _evalOutput(value: unknown): Promise; export declare function _evalRecord(statelogPath: string, allowedPaths?: string[]): Promise; export declare function _evalValues(statelogPath: string, allowedPaths?: string[]): Promise; export declare function _evalOutputs(statelogPath: string, allowedPaths?: string[]): Promise; export declare function _finalEvalOutput(statelogPath: string, allowedPaths?: string[]): Promise;