import { Transformer } from 'unified'; import { Root } from 'mdast'; interface RemarkStepsOptions { /** * Class name for steps container * * @defaultValue fd-steps */ steps?: string; /** * Class name for step container * * @defaultValue fd-step */ step?: string; } /** * Convert headings in the format of `1. Hello World` into steps. */ declare function remarkSteps({ steps, step, }?: RemarkStepsOptions): Transformer; export { type RemarkStepsOptions, remarkSteps };