export interface BranchProtectionCheck { readonly checked: boolean; readonly protected: boolean; readonly requiresChecks: boolean; readonly requiresReviews: boolean; readonly detail?: string; } export declare function checkBranchProtection(input: { readonly repoPath: string; readonly branch: string; }): Promise; //# sourceMappingURL=branch-protection.d.ts.map