interface Widths { readonly within: T[]; readonly extra: T[]; readonly withinWidth: number; } type GetLengthFunc = (comp: T) => number; declare const partition: (total: number, units: T[], len: GetLengthFunc, overflower: T) => Widths; export { partition }; //# sourceMappingURL=Overflows.d.ts.map