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