// TypeScript Version: 3.0

import {Plugin} from 'unified'
import {Options} from 'mdast-util-to-markdown'

declare namespace remarkStringify {
  interface Stringify extends Plugin<[RemarkStringifyOptions?]> {}

  type RemarkStringifyOptions = Options
}

declare const remarkStringify: remarkStringify.Stringify

export = remarkStringify
