import React from 'react'; import type { IDeploymentStrategyAdditionalFieldsProps } from '@spinnaker/core'; import type { IRollingPushCommand } from './rollingPush.strategy'; export interface IRollingPushStrategyAdditionalFieldsProps extends IDeploymentStrategyAdditionalFieldsProps { command: IRollingPushCommand; } export declare class AdditionalFields extends React.Component { private handleChange; render(): JSX.Element; }