/**-----------------------------------------------------------------------------------------
* 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
 *
 * Gets the default scrollbar width for the current environment.
 *
 * Returns the scrollbar width in pixels.
 */
export declare const scrollbarWidth: () => number;
/**
 * @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<ComboBoxColumnComponent>) => number;
