/** * Applies the @param modifyCallback and records Sentry tags if the call failed. * In case of a failure, a tag is set with @param reason as a fail reason * and the error is rethrown. */ export declare function modifyAndRecordFail(modifyCallback: () => T | Promise, reason: string, fileType: 'server-hooks' | 'client-hooks' | 'vite-cfg' | 'instrumentation-server'): Promise;