import { Request } from 'express';
import { ProbationSearchResponse } from '../data/probationSearchClient';
export interface SuggestionLink {
    text: string;
    newQuery: string;
}
export default function getSuggestionLinks(response: {
    suggestions?: ProbationSearchResponse['suggestions'];
}, req: Request): SuggestionLink[];
