import { INotification } from '@magicbell/react-headless'; import { HTMLAttributes, ReactNode } from 'react'; export type Props = { notification: INotification; children: ReactNode; } & HTMLAttributes; /** * A container for the `ClickableNotification` component. The style is taken * from the theme. * * @example * */ export default function StyledContainer({ notification, children, ...props }: Props): import("@emotion/react/jsx-runtime").JSX.Element;