import { z } from "zod";
import { AgentActionDefinition } from "../../types";
export declare const SelectOptionAction: z.ZodObject<{
    index: z.ZodNumber;
    text: z.ZodString;
}, "strip", z.ZodTypeAny, {
    text: string;
    index: number;
}, {
    text: string;
    index: number;
}>;
export type SelectOptionActionType = z.infer<typeof SelectOptionAction>;
export declare const SelectOptionActionDefinition: AgentActionDefinition;
