import React from 'react'; import type { Application } from '../application'; export interface IBannerContainerProps { app?: Application; } export declare class BannerContainer extends React.Component { render(): React.ReactElement; } export declare const BannerContainerContent: ({ app }: IBannerContainerProps) => JSX.Element;