import type MarkdownIt from 'markdown-it'; import type { IDGenerator } from '@diplodoc/utils'; export type TransformOptions = { runtime?: string | { script: string; style: string; }; bundle?: boolean; }; export declare function transform(options?: Partial): MarkdownIt.PluginWithOptions<{ output?: string; generateID?: IDGenerator; }>;