interface ISetProjectIdServiceOptions { force?: boolean; } interface ISetProjectIdService { execute(id: string, options: ISetProjectIdServiceOptions): Promise; } export declare const SetProjectIdService: import("@webiny/di").Abstraction; export declare namespace SetProjectIdService { type Interface = ISetProjectIdService; type Options = ISetProjectIdServiceOptions; } export {};