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