import React from 'react'; import type { IIconProps } from '@spinnaker/presentation'; export interface IEnvironmentItemProps { title: string | React.ReactElement; className?: string; iconTooltip: string; iconName: IIconProps['name']; withPadding?: boolean; size?: 'regular' | 'small'; rightElement?: React.ReactElement; } export declare const EnvironmentItem: React.FC;