/**-----------------------------------------------------------------------------------------
* 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 the column-menu item for locking and unlocking columns in the Grid. [See example](https://www.telerik.com/kendo-angular-ui/components/grid/accessories/column-menu#lock-and-unlock-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 known column menu item, set the [`ColumnMenuService`](https://www.telerik.com/kendo-angular-ui/components/grid/api/columnmenuservice) that the template passes to the `service` input of the `kendo-grid-columnmenu-lock` 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 ColumnMenuLockComponent extends ColumnMenuItemBase {
private ctx;
private columnInfoService;
private changeDetector;
constructor(ctx: ContextService, columnInfoService: ColumnInfoService, changeDetector: ChangeDetectorRef);
get text(): string;
get icon(): string;
unlockIcon: SVGIcon;
lockIcon: SVGIcon;
get svgIcon(): SVGIcon;
get disabled(): boolean;
/**
* @hidden
*/
toggleColumn(): void;
private toggleHierarchy;
private get locked();
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}