import type { ScopeCreepFlag } from './types.js'; export interface DetectScopeCreepArgs { scopeDoc: string | undefined; hourlyRate: number; replyId: string; replyText: string; model?: 'sonnet' | 'opus' | 'haiku'; } export declare function detectScopeCreep(args: DetectScopeCreepArgs): Promise;