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