/** * Arguments for useEvents * * @public */ export interface EventsOptions { involvedObjectName: string; namespace: string; clusterName: string; } /** * Retrieves the events for the given object * * @public */ export declare const useEvents: ({ involvedObjectName, namespace, clusterName, }: EventsOptions) => import("react-use/esm/useAsyncFn").AsyncState;