import { IntentHandler } from "../intent-handler"; import { IntentResponse, SuccessIntentResponse } from "../types"; export type ViewOrdersSuccessResponse = SuccessIntentResponse; export declare class ViewOrdersHandler extends IntentHandler<"view:orders"> { invoke(data?: void): Promise>; }