import BaseComponent from './base-component'; import { StyleData } from './style'; export declare type NoteSpanData = TextSpanData | ImageSpanData | HyperlinkSpanData; export interface TextSpanData { style: StyleData; text: string; class: string; } export interface ImageSpanData { style: StyleData; class: string; image: string; } export interface HyperlinkSpanData { style: StyleData; class: string; href: string; spans: [NoteSpanData]; } export interface NotesData { plain: { content: string; }; html: { content: { paragraphs: [{ style: StyleData; spans: [NoteSpanData]; }]; }; }; } export default class Notes extends BaseComponent { componentType: string; }