import { UI } from '@kui-shell/core'; import { KubeResource } from '@kui-shell/plugin-k8s'; interface IconBearer extends KubeResource { spec: { displayName?: string; icon: { base64data: string; mediatype: string; }[]; }; } export declare const iconBadge: UI.BadgeRegistration; export {};