/** @jsxImportSource @emotion/react */
import { ReactElement } from 'react';
import { PreferencesCategoriesProps } from '../../UserPreferencesPanel/PreferencesCategories.js';
import { NotificationInboxProps, SetViewHandler } from '../NotificationInbox.js';
type PreferencesViewProps = {
    setView: SetViewHandler;
    layout: NonNullable<NotificationInboxProps['layout']>;
    NotificationPreferences?: (props: PreferencesCategoriesProps) => ReactElement | null;
};
export default function PreferencesView({ layout, setView, NotificationPreferences, }: PreferencesViewProps): import("@emotion/react/jsx-runtime").JSX.Element;
export {};
