import { Alignment } from '../../Enums/Alignment'; /** * Represents the format settings for a grid column. */ export declare class GridColumnFormat { /** * Gets or sets the column name. * This property is used to identify the column in the grid. */ columnName?: string; /** * Gets or sets the column width. */ width?: number; /** * Gets or sets the column alignment. */ textAlignment: Alignment; }