/** * Power-tree current budget and thermal analysis. * * @module */ import type { PowerTreeInput, PowerTreeLimits, PowerTreeReport } from './types.js'; export declare const DEFAULT_LIMITS: Required; export declare function requiredBulkCapacitance(loadA: number, limits: Required): number; /** Analyze current budget, regulator dissipation, protection, and bulk capacitance. */ export declare function analyzePowerTree(input: PowerTreeInput): PowerTreeReport;