import { Command } from '@hufe921/canvas-editor'; export interface IExportDocxOption { fileName: string; } declare module '@hufe921/canvas-editor' { interface Command { executeExportDocx(options: IExportDocxOption): void; } } export default function (command: Command): (options: IExportDocxOption) => void;