/**
 * HTML Element
 *
 */
import React from 'react';
declare const Blockquote: React.ForwardRefExoticComponent<import("../../components/space/types").SpacingElementProps & {
    space?: import("../../components/space/types").SpaceTypeAll;
    innerSpace?: import("../../components/space/types").SpaceTypeAll | import("../../components/space/types").SpaceTypeMedia;
} & React.HTMLAttributes<HTMLElement> & {
    /**
     * Hides the blockquote background by making it transparent
     */
    noBackground?: boolean;
    /**
     * Determines the flow direction of the content inside of blockquote. Can be either `horizontal` or `vertical`
     * Default: `horizontal`
     */
    direction?: "horizontal" | "vertical";
} & React.RefAttributes<unknown>>;
export default Blockquote;
