import type { GitHubClient } from "../../github/client.js"; export interface DetectMergeConflictsInput { pr: string; target_branch?: string; } export interface DetectMergeConflictsOutput { pr: string; has_conflicts: boolean; mergeable_state: string; message: string; target_branch?: string; } /** * Detect merge conflicts in a pull request * @param client - GitHub client instance * @param input - Input containing PR identifier and optional target branch * @returns Promise resolving to merge conflict status */ export declare function handleDetectMergeConflicts(client: GitHubClient, input: DetectMergeConflictsInput): Promise; //# sourceMappingURL=handler.d.ts.map