import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Sort order by creation date */ export declare const ListPromptsQueryParamOrder: { readonly Asc: "asc"; readonly Desc: "desc"; }; /** * Sort order by creation date */ export type ListPromptsQueryParamOrder = ClosedEnum; export type ListPromptsRequest = { limit?: number | undefined; after?: string | undefined; /** * Sort order by creation date */ order?: ListPromptsQueryParamOrder | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const ListPromptsQueryParamOrder$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListPromptsQueryParamOrder$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListPromptsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListPromptsRequest$Outbound = { limit: number; after?: string | undefined; order: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListPromptsRequest$outboundSchema: z.ZodType; export declare function listPromptsRequestToJSON(listPromptsRequest: ListPromptsRequest): string; export declare function listPromptsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listprompts.d.ts.map