/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { QueryList } from '@angular/core'; import { ComboBoxColumnComponent } from './combobox-column.component'; /** * @hidden * * Calculates the row width based on the columns' width configuration. * * Ignores hidden columns and columns that do not match the provided media query. * Returns `null` if any column does not have a valid width. */ export declare const getRowWidthFromColumnsMeta: (columns: QueryList) => number;