import type { DividerNode } from '@prezly/slate-types'; import type { PropsWithChildren } from 'react'; import React from 'react'; import type { RenderElementProps } from 'slate-react'; interface Props extends RenderElementProps { element: DividerNode; } export declare function DividerElement({ attributes, children, element }: PropsWithChildren): React.JSX.Element; export {};