import React from 'react'; import { FormattedMessage } from 'react-intl'; import Card, { CardBody } from '@/components/ui/card'; import Stack from '@/components/ui/stack'; import Text from '@/components/ui/text'; interface MissingIndicatorProps { nested?: boolean; } const MissingIndicator = ({ nested = false }: MissingIndicatorProps): React.JSX.Element => ( ); export { MissingIndicator as default };