export declare abstract class ThirdPartyIntegrationBase { nextConfigDir: string; outputHandlerDir: string; constructor(nextConfigDir: string, outputHandlerDir: string); abstract execute(): void; isPackagePresent(name: string): Promise; }