import { VNode } from 'vue'; export interface EditorButtonDeclaration { label: string; icon: () => VNode; active: boolean; disabled: boolean; run: (option?: string) => boolean; }