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