import { default as React } from 'react';
import { TypographyTheme } from './TypographyTheme';
export interface BlockQuoteProps extends React.BlockquoteHTMLAttributes<HTMLQuoteElement> {
    /**
     * Theme for Typography.
     */
    theme?: TypographyTheme;
}
export declare const BlockQuote: React.ForwardRefExoticComponent<BlockQuoteProps & React.RefAttributes<HTMLQuoteElement>>;
