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