/** The format of notes on disk */
export declare type INotesMetadata = {
    /** All the categories of the notes */
    categories: INoteCategoryMetadata[];
    /** All the registered notes */
    notes: INoteMetadata[];
};
export declare type INoteMetadata = {
    /** The name of the note */
    name: string;
    /** The location of the note in the file system */
    location: string;
    /** The id of the category this note is in */
    categoryId?: string;
};
export declare type INoteCategoryMetadata = {
    /** The id of this category */
    id: string;
    /** The name of the category */
    name: string;
    /** The color of this category */
    color: string;
};
//# sourceMappingURL=INotesMetadata.d.ts.map