import { WorkloadKind } from '../../../constants/workload-props'; export type LogKind = 'deployment' | 'statefulset' | 'daemonset' | 'job' | 'pod'; export interface ContainerLogParams { cluster?: string; ns?: string; workloadKind?: LogKind; workload?: string; pod?: string; container?: string; } export declare function useInsightInfo(): { hasInsight: import("vue").ComputedRef; checkInsightAccess: ($event?: Event) => boolean; insightWorkloadUrl: (kind: Exclude, clusterName?: string, nsName?: string, workload?: string) => string; insightClusterUrl: (clusterName?: string) => string; insightNodeUrl: (clusterName?: string, nodeName?: string) => string; insightDeploymentsUrl: (clusterName?: string) => string; insightWorkloadLogsUrl: (params: ContainerLogParams) => string; }; export declare function useKpandaInfo(): { kpandaHelmInsight: (clusterName?: string) => string; };