import { FC, ReactNode, PropsWithChildren } from 'react'; import { IStatusBoxProps } from '../status-box'; import './style'; interface DetailPanelProps { title: ReactNode; subTitle?: ReactNode; icon?: ReactNode; status?: IStatusBoxProps; } interface DetailItemProps { title: ReactNode; value: any; } type DetailPanel = FC> & { DetailItem: FC; }; declare const DetailPanel: DetailPanel; export default DetailPanel;