import { IBlock } from '../components/index.js'; import { IBlockAttributes } from './types.js'; export interface PullQuoteBlockProps extends IBlockAttributes { quote: string; cite: string; borderColor?: string; } export interface IPullQuoteBlock extends IBlock { } export declare function PullQuoteBlock({ domNode: node, children, component: Component, style, }: IPullQuoteBlock): import("react/jsx-runtime").JSX.Element; /** * @internal */ export declare namespace PullQuoteBlock { const defaultProps: { test: (node: any) => boolean; }; }