/// import type { FormikProps } from 'formik'; import type { Application } from '../../application'; import type { IServerGroupCommand } from '../../serverGroup'; export interface IDeployingIntoManagedClusterWarningProps { app: Application; formik: FormikProps; } export declare const DeployingIntoManagedClusterWarning: ({ app, formik }: IDeployingIntoManagedClusterWarningProps) => JSX.Element;