/**
 * Checks if array `a` is equal to array `b`. Note that this does not do a deep
 * equality check. It only checks if the arrays are the same length and if each
 * element in `a` is equal to (`===`) the corresponding element in `b`.
 *
 * @param a - The first array to compare.
 * @param b - The second array to compare.
 * @returns `true` if the arrays are equal, `false` otherwise.
 */
export declare function isEqual(a: unknown[], b: unknown[]): boolean;
/**
 * Checks equality between two string arrays known to contain valid BIP-32 derivation paths.
 *
 * @param a - The first string array to compare.
 * @param b - The second string array to compare.
 * @returns - `true` if the arrays are equal, `false` otherwise.
 */
export declare function isDerivationPathEqual(a: string[], b: string[]): boolean;
//# sourceMappingURL=array.d.cts.map