/**----------------------------------------------------------------------------------------- * Copyright © 2025 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 * as i0 from "@angular/core"; /** * The directive allows customizing the drag handle cell in the Grid row reorder column. * Place an `` tag with the `kendoGridRowDragHandleTemplate` directive inside the `` tag to set the cell template. * * The template context is the current data item. You also get access to the following additional fields: * - `columnIndex`—The current column index. Use it as a template variable with `let-columnIndex="columnIndex"`. * - `rowIndex`—The data row index. Use it as a template variable with `let-rowIndex="rowIndex"`. * * @example * ```html * * * * Drag here * * * * * * ``` */ export declare class RowDragHandleTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }