import { Store } from 'n3'; import { Announce } from '../util/Interfaces'; /** * Fetching all announcements from an LDES of announcements in LDP * @param uri URI of the LDP container which contains the root (root.ttl) of the LDES * @returns {Promise>} store containing all announcements */ export declare function fetchAllAnnouncements(uri: string): Promise; export declare function postAnnouncement(announcement: Announce, rootURI: string): Promise;