export default BlockQuote;
declare function BlockQuote({ title, children, color, ...props }: {
    [x: string]: any;
    title: any;
    children: any;
    color: any;
}): JSX.Element;
