/**
 * @fileoverview Strategy factory for creating review strategies.
 *
 * This module provides a factory for creating the appropriate review strategy
 * based on the review options.
 */
import { ReviewOptions } from '../types/review';
import { IReviewStrategy } from './ReviewStrategy';
/**
 * Factory for creating review strategies
 */
export declare class StrategyFactory {
    /**
     * Create a review strategy based on options
     * @param options Review options
     * @returns The appropriate review strategy
     */
    static createStrategy(options: ReviewOptions): IReviewStrategy;
}
