import { Entity } from '@backstage/catalog-model'; export declare const SONARQUBE_PROJECT_INSTANCE_SEPARATOR = "/"; /** * * Try to parse sonarqube information from an entity. * * If part or all info are not found, they will default to undefined * * @public * @param entity - entity to find the sonarqube information from. * @returns a ProjectInfo properly populated. */ export declare const useProjectInfo: (entity: Entity) => { projectInstance: string | undefined; projectKey: string | undefined; };