import { Attachment } from "./attachment"; export declare type Note = { title: string; dateCreated?: number; dateEdited?: number; content?: Content; tags?: string[]; favorite?: boolean; pinned?: boolean; color?: string; notebooks?: Notebook[]; attachments?: Attachment[]; }; export declare type Content = { data: string; type: ContentType; }; export declare enum ContentType { HTML = "html", TEXT = "text" } export declare type Notebook = { notebook: string; topic: string; };