import { State } from "@cocalc/util/compute-states";
export interface Project {
    project_id: string;
    title: string;
    site_license: object;
    hidden?: boolean;
    last_edited: number;
    state?: State;
}
export default function getProjects(account_id: string): Promise<Project[]>;
