/** * @jsxRuntime classic * @jsx jsx */ import { jsx } from '@emotion/react'; import type { BreakoutMarkAttrs } from '@atlaskit/adf-schema'; import type { MarkProps } from '../types'; /** * React component that renders a breakout mark with dynamic width based on editor layout (wide or full-width). * * @param props - Breakout mark attrs, such as mode (wide or full-width). * @returns The rendered breakout mark as a React element. */ export default function Breakout(props: MarkProps): jsx.JSX.Element;