import type { Request, Response } from "express"; export declare const allowlistedUrl: (link: string) => string | null; export declare const checkUrl: (link: string, domain: string) => string; /** * @deprecated * * Refactor `express` functions to be framework-agnostic */ declare const backToSearch: (req: Request, res: Response, domain: string) => void; export default backToSearch;