export interface CostCommandOptions { json?: boolean | undefined; breakdown?: boolean | undefined; } export interface CostOutput { sessionId: string; tokens: { input: number; output: number; total: number; cachedInput?: number | undefined; cacheWrite?: number | undefined; audioInput?: number | undefined; audioOutput?: number | undefined; }; tokenCostUsd: number; toolCalls: number; toolCostUsd: number; shellCommands: number; shellCostUsd: number; artifacts: number; artifactBytes: number; artifactCostUsd: number; totalCostUsd: number; breakdown?: { perModelCostUsd?: Record | undefined; perTool?: Record | undefined; perSource?: Record | undefined; } | undefined; } export declare function costCommand(sessionId: string, options?: CostCommandOptions): Promise; //# sourceMappingURL=cost.d.ts.map