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