export declare const UPLOAD_ELEMENTS = "UPLOAD_ELEMENTS"; export declare const UPLOAD_COMPONENTS = "UPLOAD_COMPONENTS"; export declare const UPLOAD_ACTIVITIES = "UPLOAD_ACTIVITIES"; export declare const UPLOAD_MAPPINGS = "UPLOAD_MAPPINGS"; export declare const UPLOAD_SHORTCUTS = "UPLOAD_SHORTCUTS"; export declare const UPLOAD_NETWORKS = "UPLOAD_NETWORKS"; export declare const UPLOAD_NETWORK_ELEMENTS = "UPLOAD_NETWORK_ELEMENTS"; export declare const UPLOAD_NETWORK_SHORTCUTS = "UPLOAD_NETWORK_SHORTCUTS"; export declare const CONFIRMATION_VIEW = "CONFIRMATION_VIEW"; export declare const CONFIRMATION_QS = "CONFIRMATION_QS"; export declare const CONFIRMATION_QC = "CONFIRMATION_QC"; export declare const CONFIRMATION_ADMIN = "CONFIRMATION_ADMIN"; export declare type IMember = { projectCode: string; userNumber: string; roles: IMemberRole[]; }; export declare type IMemberRole = { projectCode: string; userNumber: string; roleCode: string; }; export declare type IRoleConf = { name: string; description: string; }; export declare const roles: IRoleConf[]; declare function getAll(projectCode: string): Promise; declare function createMember(projectCode: string, userNumber: string): Promise; declare function removeMember(projectCode: string, userNumber: string): Promise; declare function copyRole(projectCode: string, fromUserNumber: string, toUserNumber: string): Promise; declare function addRole(projectCode: string, userNumber: string, roleCode: string): Promise; declare function removeRole(projectCode: string, userNumber: string, roleCode: string): Promise; declare const memberService: { getAll: typeof getAll; createMember: typeof createMember; removeMember: typeof removeMember; copyRole: typeof copyRole; addRole: typeof addRole; removeRole: typeof removeRole; }; export default memberService;