export interface BlockQuoteProps {
    /**
     * 	The text of the quote
     */
    quote: React.ReactNode;
    /**
     * Optionally, the attribution of the quote
     */
    citation?: string;
}
