import { Entity } from '@backstage/catalog-model'; /** @public */ export type ProjectReference = { projectId: string; spaceId?: string; }; export declare function getProjectReferenceAnnotationFromEntity(entity: Entity): ProjectReference;