/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
/**
 * Represents the props of the [KendoReact GridLayout column](https://www.telerik.com/kendo-react-ui/components/layout/gridlayout).
 */
export interface GridLayoutColumnProps {
    /**
     * Specifies the width of the GridLayout column ([see example](https://www.telerik.com/kendo-react-ui/components/layout/gridlayout#kendoreact-gridlayout-overview)).
     *
     * Example:
     * ```jsx
     * <GridLayout cols={[{ width: '200px' }]} />
     * ```
     */
    width?: number | string;
}
