import { z } from "zod"; export declare const isActionsMenuActionClickedEvent: z.ZodObject<{ id: z.ZodNumber; actionName: z.ZodString; }, "strip", z.ZodTypeAny, { id: number; actionName: string; }, { id: number; actionName: string; }>; export type ActionsMenuActionClickedEvent = z.infer; export type ActionsMenuActionClickedEventCallback = (event: ActionsMenuActionClickedEvent) => void;