/**----------------------------------------------------------------------------------------- * 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 the column-menu item for locking and unlocking columns in the Grid. [See example](slug:columnmenu_grid#toc-lock-and-unlock-items). * * Place this component inside a [`ColumnMenuTemplate`]({% slug api_grid_columnmenutemplatedirective %}) directive. * To register the component as a known column menu item, set the [`ColumnMenuService`]({% slug api_grid_columnmenuservice %}) that the template passes to the `service` input of the `kendo-grid-columnmenu-lock` component. [See example](slug:columnmenu_grid#toc-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; }