import * as v from "valibot"; import { IntentHandler } from "../intent-handler"; import { IntentResponse, SuccessIntentResponse } from "../types"; export declare const ViewListIntentDataSchema: v.ObjectSchema<{ readonly listId: v.StringSchema; readonly listType: v.OptionalSchema[], undefined>, "user">; }, undefined>; export type ViewListIntentData = v.InferInput; export type ViewListSuccessResponse = SuccessIntentResponse; export declare class ViewListHandler extends IntentHandler<"view:list"> { invoke(data: ViewListIntentData): Promise>; }