import { type CanonicalGjcWorkflowSkill } from "../skill-state/canonical-skills"; export type StateGraphSkill = CanonicalGjcWorkflowSkill | "all"; export type StateGraphFormat = "ascii" | "mermaid" | "dot"; export declare function renderStateGraph(skill: StateGraphSkill, format?: string): string;