import { Event } from 'kubernetes-models/v1'; /** * Props for Events * * @public */ export interface EventsContentProps { warningEventsOnly?: boolean; events: Event[]; } /** * Shows given Kubernetes events * * @public */ export declare const EventsContent: ({ events, warningEventsOnly, }: EventsContentProps) => import("react/jsx-runtime").JSX.Element; /** * Props for Events * * @public */ export interface EventsProps { involvedObjectName: string; namespace: string; clusterName: string; warningEventsOnly?: boolean; } /** * Retrieves and shows Kubernetes events for the given object * * @public */ export declare const Events: ({ involvedObjectName, namespace, clusterName, warningEventsOnly, }: EventsProps) => import("react/jsx-runtime").JSX.Element;