import { PluginWithOptions } from 'markdown-it'; interface MarkdownItImgMarkOptions { /** * lightmode only ids * * 日间模式 ID * * @default ["light"] */ light?: string[]; /** * darkmode only ids * * 夜间模式 ID * * @default ["dark"] */ dark?: string[]; } declare const imgMark: PluginWithOptions; export { imgMark }; export type { MarkdownItImgMarkOptions };