import { default as React } from 'react'; import { CardStatus } from '../../common/constants/FinStrong'; import { KeyIndicatorsTabItemType } from '../constants'; interface KeyIndicatorsTabsItemProps { drawerFor: KeyIndicatorsTabItemType; title: string; description: string; cardState: keyof typeof CardStatus; } declare const KeyIndicatorsTabsItem: React.FC; export default KeyIndicatorsTabsItem;