import { z } from "zod"; export declare const isRemoveActionsMenuKeyFromRemotePlayerEvent: z.ZodObject<{ id: z.ZodNumber; actionKey: z.ZodString; }, "strip", z.ZodTypeAny, { id: number; actionKey: string; }, { id: number; actionKey: string; }>; export type RemoveActionsMenuKeyFromRemotePlayerEvent = z.infer; export type RemoveActionsMenuKeyFromRemotePlayerEventCallback = (event: RemoveActionsMenuKeyFromRemotePlayerEvent) => void;