export namespace IMAGE_SIZES { const XXS: number; const XS: number; const S: number; const M: number; const L: number; } export const DEFAULT_IMAGE_SIZE: "S"; export const textAttributes: { "data-infobox-text": boolean; }; export default InfoBox; declare function InfoBox({ t, children, attributes, size, margin, figureSize, figureFloat, collapsable, editorPreview }: { t: any; children: any; attributes: any; size: any; margin?: boolean; figureSize: any; figureFloat: any; collapsable: any; editorPreview: any; }): JSX.Element; declare namespace InfoBox { namespace propTypes { const t: PropTypes.Requireable<(...args: any[]) => any>; const children: PropTypes.Validator; const attributes: PropTypes.Requireable; const size: PropTypes.Requireable; const figureSize: PropTypes.Requireable; const figureFloat: PropTypes.Validator; const collapsable: PropTypes.Requireable; } namespace defaultProps { const figureFloat_1: boolean; export { figureFloat_1 as figureFloat }; const collapsable_1: boolean; export { collapsable_1 as collapsable }; } } import PropTypes from "prop-types";