/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import type { KubeObject } from "../../../common/k8s-api/kube-object"; import type { KubeObjectDetailsProps } from "./kube-object-details"; import type React from "react"; export interface KubeObjectDetailComponents { Details: React.ComponentType>; } export interface KubeObjectDetailRegistration { kind: string; apiVersions: string[]; components: KubeObjectDetailComponents; priority?: number; }