import { type AppName } from "../../abstractions/types.js"; export interface IListPackagesInAppWorkspacePackage { name: string; webinyConfig: Record; paths: { packageFolder: string; webinyConfigFile: string; }; } export type IListPackagesInAppWorkspaceServiceResult = Promise; export interface IListPackagesInAppWorkspaceService { execute(app: AppName): IListPackagesInAppWorkspaceServiceResult; } export declare const ListPackagesInAppWorkspaceService: import("@webiny/di").Abstraction; export declare namespace ListPackagesInAppWorkspaceService { type Interface = IListPackagesInAppWorkspaceService; type Result = IListPackagesInAppWorkspacePackage[]; }