import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const ResolvedStackInputSummaryProvidedBy: { readonly Developer: "developer"; readonly Deployer: "deployer"; }; export type ResolvedStackInputSummaryProvidedBy = ClosedEnum; export type ResolvedStackInputSummary = { id: string; label: string; providedBy: Array; required: boolean; secret: boolean; provided: boolean; }; /** @internal */ export declare const ResolvedStackInputSummaryProvidedBy$inboundSchema: z.ZodEnum; /** @internal */ export declare const ResolvedStackInputSummary$inboundSchema: z.ZodType; export declare function resolvedStackInputSummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=resolvedstackinputsummary.d.ts.map