import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface JumbotronInterfaceProps extends PropsInterface { title: string; description: string; subDescription: string; children: any; } export declare class Jumbotron extends PureComponent { constructor(props: any); render(): JSX.Element; }