/** Maximum number of sessions returned by one sidebar search. */ export declare const SESSION_SEARCH_RESULT_LIMIT = 20; /** Maximum snippet length in Unicode code points. */ export declare const SESSION_SEARCH_SNIPPET_MAX_CODE_POINTS = 240; /** * Return the longest prefix containing at most `maximum` Unicode code points. * @param value - text to bound. * @param maximum - non-negative code-point limit. * @returns `value` unchanged when it fits, otherwise a code-point-safe prefix. */ export declare function truncateUnicodeCodePoints(value: string, maximum: number): string; //# sourceMappingURL=session-search.d.ts.map