import { PropsWithChildren } from 'react'; import type { Mode } from '../../index.js'; import type { NewLineItem } from '../types'; interface Props { element: NewLineItem; mode: Mode; } export declare const NewLine: ({ children, element, mode }: PropsWithChildren) => JSX.Element; export {};