///
type ActivityAcknowledgementContextType = {
activityKeysByReadState: readonly [readonly string[], readonly string[]];
getHasAcknowledgedByActivityKey: (activityKey: string) => boolean | undefined;
lastAcknowledgedActivityKeyState: readonly [string];
lastReadActivityKeyState: readonly [string];
markActivityKeyAsRead: (activityKey: string) => void;
markAllAsAcknowledged: () => void;
};
declare const ActivityAcknowledgementContext: import("react").Context;
export default ActivityAcknowledgementContext;
export type { ActivityAcknowledgementContextType };
//# sourceMappingURL=Context.d.ts.map