import type { NonSearchProject } from './NonSearchProject';
export type ModifiableProject = (NonSearchProject & {
    /**
     * The SPDX license ID of a project
     */
    license_id?: string;
    /**
     * The URL to this license
     */
    license_url?: string | null;
});
