import { TSearchResult } from "@ocap/types"; //#region src/search-result.d.ts type Row = Record; interface SearchResultFormatOptions { id?: string; } declare const compactParts: (parts: unknown[]) => string; declare const formatSearchTitle: (type: string, row: Row, id?: string) => string; declare const formatSearchSubtitle: (type: string, row: Row, id?: string) => string; declare const formatSearchDescription: (type: string, row: Row) => string; declare const formatSearchTags: (type: string, row: Row) => string[]; declare const formatSearchTimestamp: (type: string, row: Row) => string; declare const formatSearchResult: (type: string, row: Row, options?: SearchResultFormatOptions) => TSearchResult; //#endregion export { SearchResultFormatOptions, compactParts, formatSearchDescription, formatSearchResult, formatSearchSubtitle, formatSearchTags, formatSearchTimestamp, formatSearchTitle };