import { FC, ReactNode } from "react"; type EntityDetailProps = { label?: string; data: { label: ReactNode; value: ReactNode; }[]; loading?: boolean; }; declare const EntityDetail: FC; export default EntityDetail;