import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ComputeSecret, ComputeSecret$Outbound } from "./computesecret.js"; export type ComputeSecretList = { nextCursor: string | null; total: number; data: Array; }; /** @internal */ export declare const ComputeSecretList$inboundSchema: z.ZodType; /** @internal */ export type ComputeSecretList$Outbound = { next_cursor: string | null; total: number; data: Array; }; /** @internal */ export declare const ComputeSecretList$outboundSchema: z.ZodType; export declare function computeSecretListToJSON(computeSecretList: ComputeSecretList): string; export declare function computeSecretListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computesecretlist.d.ts.map