import { List } from "@swishapp/api-client"; import { IntentHandler } from "../intent-handler"; import { IntentResponse, SuccessIntentResponse } from "../types"; export type CreateListIntentData = void; export type CreateListSuccessResponse = SuccessIntentResponse<{ list: List; }>; export declare class CreateListHandler extends IntentHandler<"create:list"> { invoke(data?: CreateListIntentData): Promise>; }