/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ type ResultType = { widths: number[]; columnWidths: number[]; distributedSum: number; remaining: number; }; type MinimalColumn = { minWidth?: number | null; maxWidth?: number | null; computedWidth?: number; }; declare const _default: (space: number, columns: MinimalColumn[]) => ResultType; export default _default;