import ServiceBase from '../base'; import { ContextConfigModel } from '../context/service-context'; declare class RecycleService extends ServiceBase { constructor(serviceContext?: ContextConfigModel); getProjectRecycle: (data: any) => Promise<{}>; recoverProjectRecycle: (data: any) => Promise<{}>; deleteProjectRecycle: (data: any) => Promise<{}>; } export { RecycleService }; //# sourceMappingURL=recycle.d.ts.map