import { ReactElement } from 'react'; import { TableTopNotificationProps } from './TableTopNotification'; export type TopNotificationBasicRenderProp = | ReactElement | (() => ReactElement | boolean | null | undefined) | boolean | null | undefined;