declare module 'gutentap' {
  import { Component } from 'vue';

  export interface GutenTapProps {
    modelValue?: string;
    mode?: 'html' | 'json';
    placeholder?: string;
    editable?: boolean;
    extensions?: any[];
  }

  export const GutenTap: Component<GutenTapProps>;
}
