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