/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ColumnBase } from './column-base';
import { IdService } from '../common/id.service';
import { SVGIcon } from '@progress/kendo-svg-icons';
import { CellRowspanFn } from './cell-rowspan';
import * as i0 from "@angular/core";
/**
* Represents the pin column for the Grid.
*
* @example
* ```html
*
*
*
*
* ```
*/
export declare class RowPinColumnComponent extends ColumnBase {
parent?: ColumnBase;
/**
* Defines the name for an existing font icon in the Kendo UI theme.
* @hidden
*/
pinIcon: string;
/**
* Defines an SVGIcon to be rendered as a pin icon.
* @hidden
*/
pinSVGIcon: SVGIcon;
/**
* @hidden
*/
readonly isRowPinColumn: boolean;
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;
}