import { Element } from 'html-react-parser';
import { IBlock } from '../components';
import { IBlockAttributes } from './types';
export interface PreformattedBlockProps extends IBlockAttributes {
}
export interface IPreformattedBlock extends IBlock {
}
export declare function PreformattedBlock({ domNode: node, component: Component, children, style, }: IPreformattedBlock): import("react/jsx-runtime").JSX.Element;
/**
* @internal
*/
export declare namespace PreformattedBlock {
const defaultProps: {
test: (node: Element) => boolean;
};
}