import * as v from "valibot"; import { IntentHandler } from "../intent-handler"; import { IntentResponse, SuccessIntentResponse } from "../types"; export declare const ViewOrderMenuIntentDataSchema: v.ObjectSchema<{ readonly orderId: v.StringSchema; }, undefined>; export type ViewOrderMenuIntentData = v.InferInput; export type ViewOrderMenuSuccessResponse = SuccessIntentResponse; export declare class ViewOrderMenuHandler extends IntentHandler<"view:order-menu"> { invoke(data: ViewOrderMenuIntentData): Promise>; }