import type { Options as PulumiOptions } from "@webiny/pulumi-sdk"; import { type IAppModel } from "../../abstractions/models/index.js"; export type IPulumiLoginServiceParams = Partial<{ app?: IAppModel; pulumiOptions: PulumiOptions; }>; export interface IPulumiLoginService { execute(app: IAppModel): Promise<{ login: string; }>; } export declare const PulumiLoginService: import("@webiny/di").Abstraction; export declare namespace PulumiLoginService { type Interface = IPulumiLoginService; type Params = IPulumiLoginServiceParams; }