/** @typedef {import("@ckeditor/ckeditor5-engine").Element} ModelElement */ export default class DocfieldUpdateSmartfieldCommand extends Command { /** * @param {{ name: string; type: string; modelItem: ModelElement }} params */ execute(params: { name: string; type: string; modelItem: ModelElement; }): void; } export type ModelElement = import("@ckeditor/ckeditor5-engine").Element; import { Command } from "@ckeditor/ckeditor5-core"; //# sourceMappingURL=docfield-update-smartfield-command.d.ts.map