declare const ProjectsAPI: { getProjects: () => Promise; getProject: (projectId: string) => Promise; createProject: (name: string, description: string) => Promise; updateProject: (name: string, description: string) => Promise; export: (projectId: string, exportConfigId: string, options: { emojify: boolean; }) => Promise; import: (projectId: string, languageId: string, file: any) => Promise; }; export { ProjectsAPI };