export declare const WorkflowCategoryContext: import("react").Context<{
    refresh: () => void;
    activeKey: string;
    setActiveKey: (key: string) => void;
}>;
export declare const useWorkflowCategory: () => {
    refresh: () => void;
    activeKey: string;
    setActiveKey: (key: string) => void;
};
