export function listPlatformExamples(client: ChatBotKitClient, request?: PlatformExampleListRequest): ResponsePromise; export function searchPlatformExamples(client: ChatBotKitClient, request: PlatformExampleSearchRequest): Promise; export function fetchPlatformExample(client: ChatBotKitClient, exampleId: string): ResponsePromise; export function clonePlatformExample(client: ChatBotKitClient, exampleId: string): Promise; export type ChatBotKitClient = import("../../client.js").ChatBotKitClient; export type ResponsePromise = import("../../client.js").ResponsePromise; export type PlatformExampleListRequest = { cursor?: string; order?: "desc" | "asc"; take?: number; }; export type PlatformExampleListResponse = import("../../types/api/v1.js").operations["listPlatformExamples"]["responses"]["200"]["content"]["application/json"]; export type PlatformExampleListItem = PlatformExampleListResponse["items"][number]; export type PlatformExampleListStreamType = import("../../types/api/v1.js").operations["listPlatformExamples"]["responses"]["200"]["content"]["application/jsonl"]; export type PlatformExampleSearchRequestBody = import("../../types/api/v1.js").operations["searchPlatformExamples"]["requestBody"]["content"]["application/json"]; export type PlatformExampleSearchRequest = PlatformExampleSearchRequestBody; export type PlatformExampleSearchResponseBody = import("../../types/api/v1.js").operations["searchPlatformExamples"]["responses"]["200"]["content"]["application/json"]; export type PlatformExampleSearchResponse = PlatformExampleSearchResponseBody; export type PlatformExampleFetchResponse = import("../../types/api/v1.js").operations["fetchPlatformExample"]["responses"]["200"]["content"]["application/json"]; export type PlatformExampleCloneRequestBody = import("../../types/api/v1.js").operations["clonePlatformExample"]["requestBody"]["content"]["application/json"]; export type PlatformExampleCloneRequest = PlatformExampleCloneRequestBody; export type PlatformExampleCloneResponseBody = import("../../types/api/v1.js").operations["clonePlatformExample"]["responses"]["200"]["content"]["application/json"]; export type PlatformExampleCloneResponse = PlatformExampleCloneResponseBody;