import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListComputeSecretsRequest = { cursor?: string | undefined; limit?: number | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type ListComputeSecretsResponse = components.ComputeSecretList | components.ComputeErrorEnvelope; /** @internal */ export declare const ListComputeSecretsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListComputeSecretsRequest$Outbound = { cursor?: string | undefined; limit: number; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListComputeSecretsRequest$outboundSchema: z.ZodType; export declare function listComputeSecretsRequestToJSON(listComputeSecretsRequest: ListComputeSecretsRequest): string; export declare function listComputeSecretsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListComputeSecretsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListComputeSecretsResponse$Outbound = components.ComputeSecretList$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const ListComputeSecretsResponse$outboundSchema: z.ZodType; export declare function listComputeSecretsResponseToJSON(listComputeSecretsResponse: ListComputeSecretsResponse): string; export declare function listComputeSecretsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listcomputesecrets.d.ts.map