import type { Root } from 'mdast'; import type { Plugin } from 'unified'; /** * A remark plugin to import all builtin components. * @param options configure the global components. * @returns A unified transformer. */ export declare const remarkBuiltin: Plugin<[{ globalComponents: string[]; }], Root>;