import React from 'react'; import type { IAmazonServerGroupDetailsSectionProps } from './IAmazonServerGroupDetailsSectionProps'; import type { IScalingProcess } from '../../../domain'; export interface IScalingProcessesDetailsSectionState { autoScalingProcesses: IScalingProcess[]; scalingPoliciesDisabled: boolean; scheduledActionsDisabled: boolean; } export declare class ScalingProcessesDetailsSection extends React.Component { constructor(props: IAmazonServerGroupDetailsSectionProps); private toggleScalingProcesses; private getState; componentWillReceiveProps(nextProps: IAmazonServerGroupDetailsSectionProps): void; render(): JSX.Element; }