import { GetPulumiService, LoggerService, PulumiImportService, PulumiSelectStackService } from "../../abstractions/index.js"; import { type AppModel } from "../../models/index.js"; export declare class DefaultPulumiImportService implements PulumiImportService.Interface { private getPulumiService; private pulumiSelectStackService; private loggerService; constructor(getPulumiService: GetPulumiService.Interface, pulumiSelectStackService: PulumiSelectStackService.Interface, loggerService: LoggerService.Interface); execute(app: AppModel, state: Record): Promise; } export declare const pulumiImportService: import("@webiny/di").Implementation;