import * as React from 'react'; import { Action, ExtensionK8sGroupModel, K8sGroupVersionKind, K8sResourceKindReference, GroupVersionKind } from '@openshift-console/dynamic-plugin-sdk'; /** START Internal helper methods */ export declare const getReference: ({ group, version, kind, }: K8sGroupVersionKind) => K8sResourceKindReference; export declare const referenceForGroupVersionKind: (group: string) => (version: string) => (kind: string) => string; export declare const referenceForExtensionModel: (model: ExtensionK8sGroupModel) => GroupVersionKind; /** END Internal helper methods */ type ActionsLoaderProps = { contextId: string; scope: any; onActionsLoaded: (actions: Action[]) => void; onContextChange: (contextId: string, scope: any) => void; onLoadError: (error: any) => void; }; declare const ActionsLoader: React.FC; export default ActionsLoader;