export interface WorkflowContext {
    stableKey: string;
    contextSchema: Record<string, unknown>;
}
export declare const fetchWorkflowContexts: () => Promise<WorkflowContext[]>;
