import type { Plugin } from 'unified';
export interface TransformMarkdownCodeOptions {
  /**
   * Default language to apply to inline code that doesn't have an explicit `{:lang}` suffix.
   * Set to `false` to disable default highlighting for inline code.
   * @default 'tsx'
   */
  defaultInlineCodeLanguage?: string | false;
}
export declare const transformMarkdownCode: Plugin<[TransformMarkdownCodeOptions?]>;