import { ParsedValue } from './units.js'; import { ResizeHandles, PanelChildren } from '../types/shared-panel-types.js'; /** * If any of the panels reached its minWidth while resizing the window, we need to re-calculate * the sizes since the panels reaching minWidth should consume more fractions. */ export declare function redistributeFractions(panels: PanelChildren, resizeHandles: ResizeHandles, sizes: Record, rootWidth: number): { [x: string]: ParsedValue; };