import React from 'react'; import type { Application } from '../application/application.model'; import type { ITask, ITaskStep } from '../domain'; export interface IPlatformHealthOverrideMessageProps { application: Application; step: ITaskStep; task: ITask; } export interface IPlatformHealthOverrideMessageState { showMessage: boolean; } export declare class PlatformHealthOverrideMessage extends React.Component { private tooltipTemplate; constructor(props: IPlatformHealthOverrideMessageProps); render(): JSX.Element; }