import AIProvider from './aiProvider.js';
import { ReviewHint, ReviewResponse } from './index.js';
export default class AnthropicAiClient extends AIProvider {
    /**
     * Reviews code using Anthropic's Claude model
     *
     * @param codeSnippet - The code to be reviewed
     * @param hints - Array of review hints from static analysis tools
     * @returns Promise that resolves to the AI review response
     */
    reviewCode(codeSnippet: string, hints: ReviewHint[]): Promise<ReviewResponse>;
}
