/**
 * Jest test setup file
 *
 * This file runs before each test suite and provides:
 * - Global test utilities for unit tests
 * - Configure test environment
 * - Set up mocks that apply to all tests
 */
declare global {
    var testUtils: {
        restoreConsole: () => void;
        mockConsole: () => void;
        createSampleDelta: (context?: string, path?: string, value?: any) => any;
        waitFor: (ms?: number) => Promise<void>;
        createMockWebSocket: () => any;
    };
}
export {};
//# sourceMappingURL=setup.d.ts.map