export const MAX_WIDTH_PERCENT: 70; export default TypoBlock; declare function TypoBlock({ children, attributes, onClick, color, bgColor }: { children: any; attributes: any; onClick: any; color: any; bgColor: any; }): JSX.Element; declare namespace TypoBlock { namespace propTypes { const children: PropTypes.Validator; const attributes: PropTypes.Requireable; const color: PropTypes.Requireable; const bgColor: PropTypes.Requireable; } } import PropTypes from "prop-types";