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