import { type PropsWithChildren } from 'react'; import type { NotificationSettingsProps } from './notification-settings-types.js'; /** * Switch function to determine which notification client should be used. * @internal */ export declare function NotificationProvider(props: PropsWithChildren>): string | number | boolean | Iterable | import("react/jsx-runtime").JSX.Element | null | undefined; /** * NotificationSettings component * @public */ export declare const NotificationSettings: (props: NotificationSettingsProps & import("react").RefAttributes) => import("react").ReactElement | null;