import type React from 'react'; import type { Stage } from '../api/endpoints.const'; type C3ClusterUpdateManagerProps = { children: React.ReactNode; stage: Stage; userToken: string; }; declare const C3ClusterUpdateManager: ({ children, stage, userToken, }: C3ClusterUpdateManagerProps) => React.JSX.Element; declare const useClusterUpdate: ({ onUpdate }: { onUpdate: (data: any) => void; }) => void; export { C3ClusterUpdateManager, useClusterUpdate };