/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { Renderer2 } from '@angular/core';
import { SortService } from '../common/sort.service';
import { ColumnMenuItemBase } from './column-menu-item-base';
import { SVGIcon } from '@progress/kendo-svg-icons';
import { ContextService } from '../common/provider.service';
import * as i0 from "@angular/core";
/**
* Represents the column-menu item for sorting Grid columns.
*
* Provides sorting options (ascending and descending) for a specific column in the Grid.
* Place this component inside a [`ColumnMenuTemplate`]({% slug api_grid_columnmenutemplatedirective %}) directive and pass the [`ColumnMenuService`]({% slug api_grid_columnmenuservice %}) to the `service` input of the `kendo-grid-columnmenu-sort` component.
*
* @example
* ```html
*
*
*
*
*
* ```
* * @example
* ```html
*
*
*
*
*
* ```
*/
export declare class ColumnMenuSortComponent extends ColumnMenuItemBase {
ctx: ContextService;
protected sortService: SortService;
protected renderer: Renderer2;
sortAscSmallIcon: SVGIcon;
sortDescSmallIcon: SVGIcon;
constructor(ctx: ContextService, sortService: SortService, renderer: Renderer2);
get sortedAsc(): boolean;
get sortedDesc(): boolean;
/**
* @hidden
*/
toggleSort(dir: string): void;
private get descriptor();
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}