export declare class AuthUtils { static isCordova: () => boolean; static isCapacitor: () => boolean; static isNativeMobile: () => boolean; static decodeJwt: (value?: string) => unknown; /** * Matches a full or partial url against another one. * Search parameters will be matched no matter their order. * @param url1 Reference url * @param url2 Url to match against the reference url * @returns Returns true if both urls matches pathname, origin and search parameters, or false otherwise. */ static isUrlMatching: (url1: string, url2?: string) => boolean; static getBaseUrl: () => string; static stringToURL: (url: string) => URL; }