import React from 'react'; import { ComponentProps } from '../../utils/types'; import { StyledHint } from '../MarkdownStyles'; interface MarkdownBlockquotePropsBase { children: React.ReactNode[]; } type MarkdownBlockquoteProps = ComponentProps; declare function MarkdownBlockquote({ children, ...otherProps }: MarkdownBlockquoteProps): React.JSX.Element; export default MarkdownBlockquote; export { StyledHint };