/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { TemplateRef } from '@angular/core'; import { ColumnBase } from './column-base'; import { CellTemplateDirective } from '../rendering/cell-template.directive'; import { IdService } from '../common/id.service'; import { CellRowspanFn } from './cell-rowspan'; import * as i0 from "@angular/core"; /** * Represents the command columns of the Grid. Define the content of the column inside an `` tag. * For more information and examples, see the [Editing Action Buttons](https://www.telerik.com/kendo-angular-ui/components/grid/editing/basics#editing-action-buttons) article. * * @example * ```html * * * * * * * * * * ``` */ export declare class CommandColumnComponent extends ColumnBase { parent?: ColumnBase; template: CellTemplateDirective; constructor(parent?: ColumnBase, idService?: IdService); get templateRef(): TemplateRef; /** * Sets a function to determine the rowspan of each column cell. */ set cellRowspan(cellRowspan: CellRowspanFn); get cellRowspan(): CellRowspanFn; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }