import type { AppManifest } from '@ankhorage/contracts'; export type ProjectSecretUsageCategory = 'oauth-provider' | 'project-config'; export interface ProjectSecretUsage { readonly ref: string; readonly path: string; readonly category: ProjectSecretUsageCategory; readonly label: string; readonly ownerId?: string; readonly breaksWhenMissing: boolean; } export interface ProjectSecretUsageSummary { readonly ref: string; readonly usages: readonly ProjectSecretUsage[]; } export declare function findProjectSecretUsages(input: { readonly manifest: AppManifest; readonly ref: string; }): ProjectSecretUsageSummary; //# sourceMappingURL=projectSecretUsage.d.ts.map