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