import type { PolishStep } from "../types.js"; import type { FlowLevelRef, FlowStepRef } from "../flows/types.js"; export type FlowDescDraft = { kind: "flow"; ref: FlowLevelRef; description: string; error?: string; } | { kind: "step"; ref: FlowStepRef; description: string; error?: string; }; export declare const flowsDraftStep: PolishStep; //# sourceMappingURL=flows-draft.d.ts.map