/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ChangeDetectorRef } from '@angular/core';
import { SVGIcon } from '@progress/kendo-svg-icons';
import { ColumnInfoService } from '../common/column-info.service';
import { ContextService } from '../common/provider.service';
import { ColumnMenuItemBase } from './column-menu-item-base';
import * as i0 from "@angular/core";
/**
* Represents a column-menu item for sticking or unsticking columns in the Grid.
* [See example](slug:columnmenu_grid#toc-stick-and-unstick-items).
*
* Place this component inside a [`ColumnMenuTemplate`]({% slug api_grid_columnmenutemplatedirective %}) directive.
* To register the component as a column menu item, set the [`ColumnMenuService`]({% slug api_grid_columnmenuservice %}) from the template to the `service` input of the `kendo-grid-columnmenu-stick` component.
* [See example](slug:columnmenu_grid#toc-customizing-the-content).
*
* @example
* ```html
*
*
*
*
*
*
* ```
* @example
* ```html
*
*
*
*
*
*
* ```
*/
export declare class ColumnMenuStickComponent extends ColumnMenuItemBase {
private ctx;
private columnInfoService;
private changeDetector;
stickIcon: SVGIcon;
unstickIcon: SVGIcon;
constructor(ctx: ContextService, columnInfoService: ColumnInfoService, changeDetector: ChangeDetectorRef);
get text(): string;
get icon(): string;
get svgIcon(): SVGIcon;
get disabled(): boolean;
/**
* @hidden
*/
toggleColumn(): void;
private toggleHierarchy;
private get sticky();
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}