import { Request, Response } from 'express';
import { BookmarkService } from '../../services';
declare const setUpBookmark: (res: Response, req: Request, bookmarkService: BookmarkService) => {
    bookmarkActionEndpoint: string;
    showBookmark: boolean;
    linkText: string;
    linkType: string;
};
export { setUpBookmark };
