import ServiceBase from '../base'; declare class ProjectService extends ServiceBase { getUserProjects: (accountId: any) => Promise<{}>; getUserProjectByProjectId: (data: any) => Promise<{}>; getProjectPaging: (data: any) => Promise<{}>; postProject: (data: any) => Promise<{}>; putProject: (data: any) => Promise<{}>; deleteProject: (data: any) => Promise<{}>; activeProject: (data: any) => Promise<{}>; } export { ProjectService }; //# sourceMappingURL=project.d.ts.map