import { IHasher } from "../../../utils/hasher"; import { Note } from "../../../models/note"; import type { HTMLElement } from "node-html-parser"; export declare abstract class BaseHandler { protected readonly note: Note; protected readonly hasher: IHasher; constructor(note: Note, hasher: IHasher); abstract process(element: HTMLElement): Promise; }