import { AgentAction } from '@/types/models/agent-chat-action'; export declare function normalizeActionsPayload(value: unknown): { actions: AgentAction[]; } | null; export declare function isActionsPayload(value: unknown): value is { actions: AgentAction[]; };