/** Target convention match used by checks to explain why a finding was suppressed. */ export interface TargetConventionMatch { /** Convention category that matched the inspected file or export. */ readonly kind: 'alwaysUsed' | 'usedExport'; /** Target name that supplied the matching convention. */ readonly targetName: string; /** Project-relative convention glob that matched. */ readonly pattern: string; } /** Return the first `alwaysUsed` target convention that matches a file. */ export declare function matchConventionAlwaysUsed(filePath: string, cwd?: string): TargetConventionMatch | undefined; /** Return the first `usedExports` target convention that matches a file/export pair. */ export declare function matchConventionUsedExport(filePath: string, exportName: string, cwd?: string): TargetConventionMatch | undefined; //# sourceMappingURL=conventions.d.ts.map