import { type IProjectConfigModel } from "../../abstractions/models/index.js"; import { type ExtensionTags } from "../../defineExtension/types.js"; interface IGetProjectConfigParams { tags?: ExtensionTags; } interface IGetProjectConfig { execute(params?: IGetProjectConfigParams): Promise; } export declare const GetProjectConfig: import("@webiny/di").Abstraction; export declare namespace GetProjectConfig { type Interface = IGetProjectConfig; type Params = IGetProjectConfigParams; } export {};