/** * @description * Exposes APIs to update handling agentic ui updates. */ declare class AgentMessageHandler { /** * Update redux properties * @private */ static transformReference(key: string): string; /** * Update redux properties * @private */ static extractReferenceParts(reference: string): { pageReference: string; propertyName: string; }; /** * Update redux properties * @private */ static publishCaseValuesUpdate(data: { message: { [key: string]: unknown; }; }, dispatchData: { actionInContext: string; }): void; } export default AgentMessageHandler;