import { IPlugin } from "@m2d/core";
interface IEmojiPluginOptions {
    /**
     * A mapping of emoji shortcodes to their corresponding Unicode characters.
     * This allows for easy customization or extension of the emoji representation.
     */
    emojis?: Record<string, string>;
}
/**
 * This plugin adds support for emoji shortcodes (e.g., `:smile:`, `:rocket:`) in your Markdown-to-DOCX
 * conversion pipeline. It replaces recognized emoji shortcodes with their corresponding Unicode
 * characters during the MDAST transformation.
 */
export declare const emojiPlugin: (options?: IEmojiPluginOptions) => IPlugin;
export {};
