import type { NodeConfig } from '@bugsnag/node';
import { type ErrorReport, type Severity, addFeatureFlag, bugsnagErrorReporter, reportErrorToBugsnag } from '@lokalise/error-utils';
import type { FastifyPluginCallback } from 'fastify';
export { reportErrorToBugsnag, addFeatureFlag, bugsnagErrorReporter, type ErrorReport, type Severity, };
export interface BugsnagPluginConfig {
    bugsnag: NodeConfig;
    isEnabled: boolean;
}
export declare const bugsnagPlugin: FastifyPluginCallback<BugsnagPluginConfig>;
