export interface GroupSettingsModel {
    /**
     * Specifies the column names to group at initial rendering of the Grid.
     * You can also get the currently grouped columns.
     *
     * @default []
     */
    hiddenColumns?: string[];
    columns?: string[];
}
