/** * Trends Command - drift trends * * View pattern regressions and improvements over time. */ import { Command } from 'commander'; export interface TrendsCommandOptions { period?: '7d' | '30d' | '90d'; verbose?: boolean; } export declare const trendsCommand: Command; //# sourceMappingURL=trends.d.ts.map