/** * Compares two URI strings for equality, ignoring trailing slashes. * * If either URI ends with a trailing slash (except a single "/"), the slash is removed * before comparison. This helps treat URLs like "https://example.com/path" and * "https://example.com/path/" as equal. * * @param entityIdA - The first URI string to compare. * @param entityIdB - The second URI string to compare. * @returns `true` if the URIs are equal ignoring trailing slashes, otherwise `false`. * * @example * compareURIs('https://example.com/path', 'https://example.com/path/') // true * compareURIs('/resource', '/resource/') // true * compareURIs('https://example.com/', 'https://example.com') // true * compareURIs('/path1', '/path2') // false */ export declare function compareURIs(entityIdA: string, entityIdB: string): boolean; //# sourceMappingURL=compare-uris.d.ts.map