import type { Plugin as RollupPlugin } from 'rollup'; /** * Rollup plugin to remove the DevFatalErrorPage import during prerendering. * * Replaces: * import { DevFatalErrorPage } from '@cedarjs/web/dist/components/DevFatalErrorPage' * with: * const DevFatalErrorPage = undefined * * Prerendering runs in a production context and should not include the * dev-only error page component in the bundle. */ export declare const cedarRemoveDevFatalErrorPagePlugin: () => RollupPlugin; //# sourceMappingURL=rollup-plugin-cedar-remove-dev-fatal-error-page.d.ts.map