import { type IProjectModel } from "../../abstractions/models/index.js"; type IGetProjectServiceResult = IProjectModel; interface IGetProjectService { execute(cwd?: string): IGetProjectServiceResult; } export declare const GetProjectService: import("@webiny/di").Abstraction; export declare namespace GetProjectService { type Interface = IGetProjectService; type Result = IGetProjectServiceResult; } export {};