import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Where the feedback of the workflow originated from */ export declare const WorkflowFeedbackInfoSource: { readonly ZeroState: "ZERO_STATE"; readonly Library: "LIBRARY"; readonly Homepage: "HOMEPAGE"; }; /** * Where the feedback of the workflow originated from */ export type WorkflowFeedbackInfoSource = ClosedEnum; export type WorkflowFeedbackInfo = { /** * Where the feedback of the workflow originated from */ source?: WorkflowFeedbackInfoSource | undefined; }; /** @internal */ export declare const WorkflowFeedbackInfoSource$outboundSchema: z.ZodNativeEnum; /** @internal */ export type WorkflowFeedbackInfo$Outbound = { source?: string | undefined; }; /** @internal */ export declare const WorkflowFeedbackInfo$outboundSchema: z.ZodType; export declare function workflowFeedbackInfoToJSON(workflowFeedbackInfo: WorkflowFeedbackInfo): string; //# sourceMappingURL=workflowfeedbackinfo.d.ts.map