import { Root } from 'hast'; export interface PageBreakOptions { h1NewPage?: boolean; hrAsPageBreak?: boolean; } export default function rehypePageBreaks(options?: PageBreakOptions): (tree: Root) => void;