interface StyledContainerProps {
    height?: number;
    children: React.ReactElement | React.ReactElement[];
    layout: string[];
}
/**
 * Container for the notification inbox.
 *
 * @example
 * <StyledContainer height={500}>
 *   <p>Cannot fetch notifications</p>
 * </StyledContainer>
 */
export default function StyledContainer({ height, children, layout }: StyledContainerProps): import("@emotion/react/jsx-runtime").JSX.Element;
export {};
