export type WorkflowStateRoot = 'context' | 'structured' | 'effect' | 'companion'; export interface ParsedWorkflowStateReference { root: WorkflowStateRoot; scope?: string; path: string[]; } export declare function parseWorkflowStateReference(reference: string): ParsedWorkflowStateReference; //# sourceMappingURL=workflow-state-reference.d.ts.map