import type { Tokens } from 'marked'; import type { TransformOptions } from './types.js'; /** * Transform markdown code blocks using a given template. * * @param token - The Markdown code token to transform. * @param options - Configuration options for the transformation. */ export declare function transform(token: Tokens.Generic, options: TransformOptions): void;