import type { ColumnAbstract } from "../../types.js"; /** * Returns the column width information for a set of columns. This meta will then be * used to determine final width of columns in the grid, based on additional settings * such as size to fit. */ export declare function columnWidthMeta(columns: ColumnAbstract[], base: Omit): { widths: number[]; totalWidth: number; flexTotal: number; };