import { z } from "zod";
import { AgentActionDefinition } from "../../types";
export declare const KeyPressAction: z.ZodObject<{
    text: z.ZodString;
}, "strip", z.ZodTypeAny, {
    text: string;
}, {
    text: string;
}>;
export type KeyPressActionType = z.infer<typeof KeyPressAction>;
export declare const KeyPressActionDefinition: AgentActionDefinition;
