import type { Mastra } from '../../mastra/index.js'; import type { ComputeStateSignalArgs, ComputeStateSignalResult } from '../../processors/index.js'; /** * Input processor that publishes the agent's current objective as a state * signal. Auto-registered when an agent is configured with `goal`, or added * explicitly via {@link GoalSignalProvider}. */ export declare class GoalStateProcessor { readonly id = "goal-state"; readonly stateId = "goal"; protected mastra?: Mastra; __registerMastra(mastra: Mastra): void; private resolveStore; private getPriorObjective; computeStateSignal(args: ComputeStateSignalArgs): Promise; } //# sourceMappingURL=state-processor.d.ts.map