/** * GitHub secret patterns */ import { SecretPattern } from '../types'; /** * GitHub Personal Access Token (Classic) pattern * Format: ghp_[a-zA-Z0-9]{36} */ export declare const githubPatClassicPattern: SecretPattern; /** * GitHub Personal Access Token (Fine-grained) pattern * Format: github_pat_[a-zA-Z0-9_]{82} */ export declare const githubPatFineGrainedPattern: SecretPattern; export declare const githubPatterns: SecretPattern[]; //# sourceMappingURL=github.d.ts.map