import { z } from "zod";
import { AgentActionDefinition } from "../../types";
export declare const ThinkingAction: z.ZodObject<{
    thought: z.ZodString;
}, "strip", z.ZodTypeAny, {
    thought: string;
}, {
    thought: string;
}>;
export type ThinkingActionType = z.infer<typeof ThinkingAction>;
export declare const ThinkingActionDefinition: AgentActionDefinition;
