import { IWebMentionStorage } from "../interfaces/web-mention-storage.interface"; import { Mention } from "../types/mention.type"; import { SimpleMention } from "../types/simple-mention.type"; export declare class LocalWebMentionStorage implements IWebMentionStorage { private queue; private pages; constructor(); addPendingMention(mention: SimpleMention): Promise; getNextPendingMentions(): Promise; getMentionsForPage(page: string, type?: string | undefined): Promise; storeMentionForPage(page: string, mention: Mention): Promise; deleteMention(mention: SimpleMention): Promise; }