import type { ComponentType, ElementType, ReactNode } from 'react' import type { HTMLAttrs } from './common' export interface BlockQuoteProps extends HTMLAttrs { children: ReactNode link?: string linkHref?: string additionalInfo?: string textStyle?: 'large' | 'heading' LinkRouter?: ElementType linkRouterProps?: Record } declare const BlockQuote: ComponentType export default BlockQuote