import { IntegrationResponse } from './types/api.js';
import { Integration } from './types/integrations.js';
import { TestOptions } from './types/options.js';
type MergeIntegrationsOpts = {
    configIntegrations?: {
        name: string;
        dev?: {
            path: string;
            force_run_in_build?: boolean;
        };
    }[];
    apiIntegrations: IntegrationResponse[];
    context: string;
    testOpts?: TestOptions;
    offline: boolean;
};
export declare const mergeIntegrations: ({ configIntegrations, apiIntegrations, context, testOpts, offline, }: MergeIntegrationsOpts) => Promise<Integration[]>;
export {};
