/**
* For MDX files, steer away from using JSX components
* for blockquote in favor of standard markdown syntax.
*
*```
* > Without aesthetic, design is either the humdrum repetition of familiar clichés
* > or a wild scramble for novelty. Without aesthetic, the computer is but a
* > mindless speed machine, producing effects without substance, form without
* > relevant content, or content without meaningful form.
* >
* > – Paul Rand
* ```
*/
export function Blockquote({ className, ...rest }: {
[x: string]: any;
className: any;
}): React.DetailedReactHTMLElement;
export namespace Blockquote {
namespace propTypes {
let className: PropTypes.Requireable;
}
}
import React from 'react';
import PropTypes from 'prop-types';