export interface ResolveOptions { readonly repoPath: string; readonly branch: string; readonly mainBranch: string; readonly prUrl?: string; readonly featureSlug: string; readonly claudeBin?: string; /** Override the model for the merge-resolver subagent. */ readonly model?: string; } export interface ResolveResult { readonly resolved: boolean; readonly detail: string; } export declare function dispatchMergeResolver(options: ResolveOptions): Promise; //# sourceMappingURL=conflict-resolver.d.ts.map