import { MdxComponent } from '../interfaces';
interface BlockquoteProps {
className?: string | null;
[otherProp: string]: unknown;
}
/**
* 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 declare const Blockquote: MdxComponent;
export {};