import { Plugin } from 'rollup'; /** * rollup-plugin-catch-fetch * * How it works: NPM packages will sometimes contain Node.js-specific polyfills * for the native browser Fetch API. Since this makes no sense in an ESM web * project, we can replace these expensive polyfills with native references to * the fetch API. * * This still allows you to polyfill fetch in older browsers, if you desire. */ export declare function rollupPluginCatchFetch(): Plugin;