import { type IProjectConfigModel } from "../../abstractions/models/index.js"; import { type ExtensionTags } from "../../defineExtension/types.js"; interface IGetProjectConfigServiceParams { tags?: ExtensionTags; renderArgs?: Record; } type IGetProjectConfigServiceResult = IProjectConfigModel; interface IGetProjectConfigService { execute(params?: IGetProjectConfigServiceParams): Promise; } export declare const GetProjectConfigService: import("@webiny/di").Abstraction; export declare namespace GetProjectConfigService { type Interface = IGetProjectConfigService; type Params = IGetProjectConfigServiceParams; type Result = IGetProjectConfigServiceResult; } export {};