/** * Shallow compare two objects * source: https://github.com/pmndrs/zustand/blob/main/src/vanilla/shallow.ts */ export declare const shallow: (objA: T, objB: T) => boolean;