import { z } from "zod";
import { AgentActionDefinition } from "../../types";
export declare const GoToUrlAction: z.ZodObject<{
    url: z.ZodString;
}, "strip", z.ZodTypeAny, {
    url: string;
}, {
    url: string;
}>;
export type GoToUrlActionType = z.infer<typeof GoToUrlAction>;
export declare const GoToURLActionDefinition: AgentActionDefinition;
