import * as React from 'react'; import { ExtensionHook, Action } from '@openshift-console/dynamic-plugin-sdk'; type ActionsHookResolverProps = { scope: any; useValue: ExtensionHook; onValueResolved: (value: Action[]) => void; onContextChange: (contextId: string, scope: any) => void; onValueError: (error: any) => void; }; declare const ActionsHookResolver: React.FC; export default ActionsHookResolver;