/** * Sets up Web Streams API polyfills for testing environments. * * Web Streams API polyfills from web-streams-polyfill. These polyfills provide implementations * of modern streaming APIs that may not be available in the Jest/JSDOM testing environment. * * The setup enables testing of components and utilities that rely on the Web Streams API, * such as those that process streaming data or implement custom stream transformations. * * @example * // In your jest setup file * import { setupWebStreams } from '@trackunit/react-test-setup'; * * setupWebStreams(); */ export declare const setupWebStreams: () => void;