import React from 'react'; export interface KubernetesDialogProps { buttonAriaLabel: string; buttonIcon: React.ReactNode; buttonText: string; children?: React.ReactNode; disabled?: boolean; title: string; } /** * Dialog component for use in the Kubernetes plugin * * @public */ export declare const KubernetesDialog: ({ buttonAriaLabel, buttonIcon, buttonText, children, disabled, title, }: KubernetesDialogProps) => React.JSX.Element;