import { List } from "@swishapp/api-client"; import * as v from "valibot"; import { IntentHandler } from "../intent-handler"; import { IntentResponse, SuccessIntentResponse } from "../types"; export declare const EditListIntentDataSchema: v.ObjectSchema<{ readonly listId: v.StringSchema; }, undefined>; export type EditListIntentData = v.InferInput; export type EditListSuccessResponse = SuccessIntentResponse<{ list: List; }>; export declare class EditListHandler extends IntentHandler<"edit:list"> { invoke(data: EditListIntentData): Promise>; }