export declare class Utils { /** * Fast remove an element from array. * @param array - Array * @param item - Element */ static removeFromArray(array: any[], item: any): boolean; /** * Decodes a given Uint8Array into a string. */ static decodeText(array: Uint8Array): string; /** * Judge whether the url is absolute url. * @param url - The url to be judged. * @returns Whether the url is absolute url. */ static isAbsoluteUrl(url: string): boolean; /** * Judge whether the url is base64 url. * @param url - The url to be judged. * @returns Whether the url is base64 url. */ static isBase64Url(url: string): boolean; /** * Get the values of an object. */ static objectValues(obj: any): any[]; /** * Convert a relative URL to an absolute URL based on a given base URL. * @param baseUrl - The base url. * @param relativeUrl - The relative url. * @returns The resolved url. */ static resolveAbsoluteUrl(baseUrl: string, relativeUrl: string): string; private static _stringToPath; private static _insertionSort; private static _encodePathComponents; }