import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { UpdatePromptResponse, UpdatePromptResponse$Outbound } from "./updatepromptresponse.js"; export type ListPromptsResponse = { /** * Object type */ object: "list"; /** * Array of prompt objects */ data: Array; /** * Whether there are more results available */ hasMore: boolean; /** * ID of the first item in the list */ firstId?: string | undefined; /** * ID of the last item in the list */ lastId?: string | undefined; }; /** @internal */ export declare const ListPromptsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListPromptsResponse$Outbound = { object: "list"; data: Array; has_more: boolean; first_id?: string | undefined; last_id?: string | undefined; }; /** @internal */ export declare const ListPromptsResponse$outboundSchema: z.ZodType; export declare function listPromptsResponseToJSON(listPromptsResponse: ListPromptsResponse): string; export declare function listPromptsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listpromptsresponse.d.ts.map