import React from 'react'; export interface BlockquoteProps { author: string; classNames?: { footer?: string; source?: string; wrapper?: string; }; quote: string; source?: string; } declare const Blockquote: React.FC; export { Blockquote };