interface StyledContainerProps { height?: number; children: React.ReactElement | React.ReactElement[]; layout: string[]; } /** * Container for the notification inbox. * * @example * *

Cannot fetch notifications

*
*/ export default function StyledContainer({ height, children, layout }: StyledContainerProps): import("@emotion/react/jsx-runtime").JSX.Element; export {};