export interface BudgetConfig { name: string; description?: string; dailyLimit?: number; weeklyLimit?: number; monthlyLimit?: number; perRequestLimit?: number; alertThreshold?: number; alertType?: string; alertConfig?: Record; models?: string[]; } export declare function createBudgetCommand(): Promise; export declare function listBudgetsCommand(): void; export declare function getBudgetCommand(name: string): void; export declare function deleteBudgetCommand(name: string): Promise; export declare function showPricingCommand(): void; export declare function estimateCostCommand(): Promise; //# sourceMappingURL=costs.d.ts.map