import { type DomainAnalysis } from './types.js'; export interface UseCaseAnalyzerOptions { model?: string; contextText?: string; timeoutMs?: number; } export declare function analyzeUseCase(useCase: string, options?: UseCaseAnalyzerOptions): Promise;