import React from 'react'; export interface MdInfoBoxProps extends React.HTMLAttributes { label: string; hideIcon?: boolean; fullWidth?: boolean; customIcon?: React.ReactNode | string; } export declare const MdInfoBox: React.FC; export default MdInfoBox;