export function listPlatformActions(client: ChatBotKitClient, request?: PlatformActionListRequest): ResponsePromise; export type ChatBotKitClient = import("../../client.js").ChatBotKitClient; export type ResponsePromise = import("../../client.js").ResponsePromise; export type PlatformActionListRequest = { cursor?: string; order?: "desc" | "asc"; take?: number; meta?: Record; }; export type PlatformActionListResponse = import("../../types/api/v1.js").operations["listPlatformActions"]["responses"]["200"]["content"]["application/json"]; export type PlatformActionListItem = PlatformActionListResponse["items"][number]; export type PlatformActionListStreamType = import("../../types/api/v1.js").operations["listPlatformActions"]["responses"]["200"]["content"]["application/jsonl"];