/** * Shared test utilities for Connect component tests */ /** * Mock constants returned by NativeStripeSdkModule.getConstants() * Used to mock the native module in tests */ export declare const mockNativeConstants: { API_VERSIONS: { CORE: string; ISSUING: string; }; SYSTEM_INFO: { sdkVersion: string; osVersion: string; deviceType: string; appName: string; appVersion: string; }; }; /** * Creates a mock for NativeStripeSdkModule with standard test constants * NOTE: Prefixed with 'mock' to be allowed in jest.mock() factory functions * @param additionalMethods - Optional additional methods to include in the mock * @returns Mock module configuration */ export declare const mockCreateNativeStripeSdkMock: (additionalMethods?: Record) => { __esModule: boolean; default: { getConstants: jest.Mock<{ API_VERSIONS: { CORE: string; ISSUING: string; }; SYSTEM_INFO: { sdkVersion: string; osVersion: string; deviceType: string; appName: string; appVersion: string; }; }, [], any>; }; }; //# sourceMappingURL=testUtils.d.ts.map