/** * Arguments for useApiResources * * @public */ export interface UseClusterOptions { clusterName: string; } /** * Retrieves the logs for the given pod * * @public */ export declare const useCluster: ({ clusterName }: UseClusterOptions) => import("react-use/esm/useAsyncFn").AsyncState<{ name: string; authProvider: string; oidcTokenProvider?: string | undefined; dashboardUrl?: string | undefined; } | undefined>;