import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { OnClickEventType } from "../../interfaces/types/OnClickEventType"; export interface BoxHeaderInterfaceProps extends PropsInterface { title?: string; icon?: string; number?: number; options?: any; onClickIcon?: OnClickEventType; } export declare class BoxHeader extends PureComponent { constructor(props: any); render(): JSX.Element; }