import type { GitHubClient } from "../../github/client.js"; import type { FindUnresolvedCommentsInput, FindUnresolvedCommentsOutput } from "./schema.js"; /** * Find unresolved comments in a GitHub pull request * @param client - GitHub API client instance * @param input - Input parameters including PR identifier and options * @returns Promise resolving to unresolved comments and pagination info */ export declare function handleFindUnresolvedComments(client: GitHubClient, input: FindUnresolvedCommentsInput): Promise; //# sourceMappingURL=handler.d.ts.map