import * as z from "zod"; export declare const PostClipzyStoreOpServerList: readonly ["https://paste.sdjz.wiki"]; /** * 包含加密数据和可选的TTL。 */ export type PostClipzyStoreRequest = { compressedData: string; ttl?: number | undefined; }; export declare const PostClipzyStoreRequest$zodSchema: z.ZodType; /** * 请求体过大。上传的数据(压缩后)超过了服务器限制。 */ export type PostClipzyStoreRequestEntityTooLargeResponseBody = { error?: string | undefined; details?: string | undefined; }; export declare const PostClipzyStoreRequestEntityTooLargeResponseBody$zodSchema: z.ZodType; /** * 请求体缺失、格式错误或参数无效。 */ export type PostClipzyStoreBadRequestResponseBody = { error?: string | undefined; details?: string | undefined; }; export declare const PostClipzyStoreBadRequestResponseBody$zodSchema: z.ZodType; /** * 片段创建成功!返回该片段的唯一ID。 */ export type PostClipzyStoreResponseBody = { id?: string | undefined; }; export declare const PostClipzyStoreResponseBody$zodSchema: z.ZodType; export type PostClipzyStoreResponse = PostClipzyStoreResponseBody | PostClipzyStoreBadRequestResponseBody | PostClipzyStoreRequestEntityTooLargeResponseBody; export declare const PostClipzyStoreResponse$zodSchema: z.ZodType; //# sourceMappingURL=postclipzystoreop.d.ts.map