/** * Support hard breaks without needing spaces or escapes (turns enters into * `
`s). * * @returns * Transform. */ export default function remarkBreaks(): (tree: Root) => undefined; export type Root = import('mdast').Root;