import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: imageParagraph** * * A paragraph with an image as its first child, followed by any other content. Typically, the image is rendered to the left, with the content to the right of it. * * Children: `[image any+]` * * @param children * @param className * @param props * @constructor */ declare function ImageParagraph({ children, className, ...props }: PropsWithChildrenAndClassName): import("react/jsx-runtime").JSX.Element; export { ImageParagraph };