import { Caption } from '../models/caption.model'; import { RouteLocationRaw } from 'vue-router'; export declare const searchString: (item: any, searchText: any) => boolean; export declare const getValueByPath: (obj: any, path: string) => any; export declare const isEmptyStringOrNotDefined: (value: any) => boolean; export declare const isExternalLink: (link: string | RouteLocationRaw | null) => boolean; export declare const sanitizeString: (str: any) => string; export declare const sanitizeHtml: (html: string) => string; export declare const convertStringToCaption: (caption: string | Caption) => Caption;