import { ReactNode } from 'react';
export interface Props {
    title: ReactNode;
    actions?: ReactNode;
}
/**
 * Header for the notification inbox. It renders a "Mark All Read" button,
 * which invokes the `onAllRead` callback.
 *
 * The component must be wrapped in a {@link MagicBellThemeProvider} component.
 *
 * @example
 * <Header title="Inbox" actions={<button>mark as read</button>>} />
 */
export default function Header({ title, actions }: Props): import("@emotion/react/jsx-runtime").JSX.Element;
