import { ContainerScope } from './types'; /** * Props for PodLogsDialog * * @public */ export interface PodLogsDialogProps { containerScope: ContainerScope; } /** * Shows the logs for the given pod in a Dialog * * @public */ export declare const PodLogsDialog: ({ containerScope }: PodLogsDialogProps) => import("react/jsx-runtime").JSX.Element;