export declare const WorkflowCategoryContext: import("react").Context<{
    data: any[];
    refresh: () => void;
    activeKey: string;
    setActiveKey: (key: string) => void;
    categoriesLoaded?: boolean;
}>;
export declare const useWorkflowCategory: () => {
    data: any[];
    refresh: () => void;
    activeKey: string;
    setActiveKey: (key: string) => void;
    categoriesLoaded?: boolean;
};
