import { type GetApp } from "../../abstractions/index.js"; export interface IListPackagesServiceParams { appName?: GetApp.AppName; packageWhitelist?: string[]; } export interface IListPackagesPackage { name: string; paths: { packageFolder: string; webinyConfigFile: string; }; } export type IListPackagesServiceResult = IListPackagesPackage[]; export interface IListPackagesService { execute(params: IListPackagesServiceParams): Promise; } export declare const ListPackagesService: import("@webiny/di").Abstraction; export declare namespace ListPackagesService { type Interface = IListPackagesService; type Params = IListPackagesServiceParams; type Package = IListPackagesPackage; type Result = IListPackagesServiceResult; }