Piggybacking off @Ian answer (which I upvoted); if you are using Jest you can add this to your Jest setupFiles file:
jest.mock("@react-native-cookies/cookies", () => ({ set: jest.fn(), get: jest.fn(), clearAll: async () => {}, }));