/**----------------------------------------------------------------------------------------- * Copyright © 2026 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](https://www.telerik.com/kendo-angular-ui/components/grid/accessories/column-menu#stick-and-unstick-items). * * Place this component inside a [`ColumnMenuTemplate`](https://www.telerik.com/kendo-angular-ui/components/grid/api/columnmenutemplatedirective) directive. * To register the component as a column menu item, set the [`ColumnMenuService`](https://www.telerik.com/kendo-angular-ui/components/grid/api/columnmenuservice) from the template to the `service` input of the `kendo-grid-columnmenu-stick` component. * [See example](https://www.telerik.com/kendo-angular-ui/components/grid/accessories/column-menu#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; }