import { Plugin } from 'unified'; import { Root } from 'hast'; declare type RehypeTitleProps = (title: string, description: string) => void; declare const rehypeTitle: Plugin<[RehypeTitleProps?], Root>; export default rehypeTitle;