type Maybe<T> = T | null | undefined;
export default function shallowEqualArrays(a: Maybe<unknown[]>, b: Maybe<unknown[]>): boolean;
export {};
