import { NotificationsProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const Notifications: ({ children }: { children: (props: NotificationsProps & { isAccesibilityOn?: boolean; }) => ReactNode; }) => ReactNode; export default Notifications;