export declare type ProjectModel = { code: string; name: string; description: string; }; declare function getAll(): Promise; declare function get(projectCode: string): Promise; declare function getMyProjects(): Promise; declare const projectService: { getAll: typeof getAll; get: typeof get; getMyProjects: typeof getMyProjects; }; export default projectService;