import { ReactElement } from 'react'; import { TableTopNotificationProps } from './TableTopNotification'; import { ComputedQuery, FiltersMap } from '@wix/bex-core'; export type TopNotificationRenderProp = ReactElement | ((params: { query: ComputedQuery; }) => ReactElement | boolean | null | undefined) | boolean | null | undefined; export type TopNotificationBasicRenderProp = ReactElement | (() => ReactElement | boolean | null | undefined) | boolean | null | undefined; //# sourceMappingURL=TopNotificationRenderProp.d.ts.map