import React from 'react'; import type { IAmazonServerGroupCommand } from '../../serverGroupConfiguration.service'; export interface IServerGroupSecurityGroupsRemovedProps { command?: IAmazonServerGroupCommand; removed?: string[]; onClear?: () => void; } export declare class ServerGroupSecurityGroupsRemoved extends React.Component { static defaultProps: Partial; render(): JSX.Element; }