import { type AnyEvaluationResult, type EvaluationResultValue } from '@splunk/dashboard-utils'; /** Asynchronously evaluate a JSONata expression with resolved tokens. * * If provided, an initial assumed result can be returned immediately. By default this initial assumed result will be `null`\ * If the initial result is an instance of `Error` the assumed result will be an error state (`{}.success = false`) */ export declare const useJsonataEvaluation: (expression: string, initialValue?: EvaluationResultValue | Error) => AnyEvaluationResult; //# sourceMappingURL=useJsonataEvaluation.d.ts.map