import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type BlockquoteParts = { blockquote: ''; }; declare type BlockquoteDOMProps = React.ComponentPropsWithRef<'blockquote'>; declare type BlockquoteStyleConfigProp = { styleConfig?: StyleConfig; }; declare type BlockquoteSystemProps = BoxSystemProps; export declare type BlockquoteProps = BlockquoteDOMProps & BlockquoteStyleConfigProp & BlockquoteSystemProps & { as?: React.ElementType; }; export declare const Blockquote: React.ForwardRefExoticComponent & React.RefAttributes>; export {};