import { State } from "@cocalc/util/compute-states";
export interface Project {
    project_id: string;
    title: string;
    quota: object;
    last_edited: number;
    state?: State;
    collaborators: string[];
}
export default function getProjectsWithLicense(license_id: string): Promise<Project[]>;
