import { z } from "zod";
import { AgentActionDefinition } from "../../types";
export declare const CompleteAction: z.ZodObject<{
    success: z.ZodBoolean;
    text: z.ZodNullable<z.ZodString>;
}, z.core.$strip>;
export type CompleteActionType = z.infer<typeof CompleteAction>;
export declare const CompleteActionDefinition: AgentActionDefinition;
