/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { QueryList, TemplateRef } from '@angular/core'; import { ColumnBase } from './column-base'; import { IdService } from '../common/id.service'; import { SVGIcon } from '@progress/kendo-svg-icons'; import { RowDragHandleTemplateDirective } from '../row-reordering/drag-handle-template.directive'; import { RowDragHintTemplateDirective } from '../row-reordering/drag-hint-template.directive'; import { CellRowspanFn } from './cell-rowspan'; import * as i0 from "@angular/core"; /** * Represents the drag handle for reordering rows in the Grid. [See example](https://www.telerik.com/kendo-angular-ui/components/grid/rows/reordering). * * @example * ```html * * * * * ``` */ export declare class RowReorderColumnComponent extends ColumnBase { parent?: ColumnBase; /** * Defines the name for an existing font icon in the Kendo UI theme. * @hidden */ dragHandleIcon: string; /** * Defines an SVGIcon to be rendered as a drag handle. * @hidden */ dragHandleSVGIcon: SVGIcon; /** * @hidden */ dragHandleTemplate: QueryList; /** * @hidden */ dragHintTemplate: QueryList; /** * @hidden */ readonly isRowReorderColumn: boolean; /** * @hidden */ get rowDragHandleTemplateRef(): TemplateRef; /** * @hidden */ get rowDragHintTemplateRef(): TemplateRef; constructor(parent?: ColumnBase, idService?: IdService); /** * 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; }