import * as v from "valibot"; import { IntentHandler } from "../intent-handler"; import { IntentResponse, SuccessIntentResponse } from "../types"; export declare const DeleteListIntentDataSchema: v.ObjectSchema<{ readonly listId: v.StringSchema; }, undefined>; export type DeleteListIntentData = v.InferInput; export type DeleteListSuccessResponse = SuccessIntentResponse<{ listId: string; }>; export declare class DeleteListHandler extends IntentHandler<"delete:list"> { invoke(data: DeleteListIntentData): Promise>; }