import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { BoxHeaderInterfaceProps } from "./BoxHeader"; import { BoxBodyInterfaceProps } from "./BoxBody"; export interface BoxInterfaceProps extends PropsInterface { header: BoxHeaderInterfaceProps; body: BoxBodyInterfaceProps; } export declare class Box extends PureComponent { constructor(props: any); render(): JSX.Element; }