/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ContextService } from '../../common/provider.service';
import { FilterOperatorBase } from './filter-operator.base';
import * as i0 from "@angular/core";
/**
* Represents the `Greater` (**Is after**) [date filter](https://www.telerik.com/kendo-angular-ui/components/grid/filtering/basics#date-filter) operator.
* Use this operator to filter dates after the specified date.
* [See example](https://www.telerik.com/kendo-angular-ui/components/grid/filtering/filter-row#default-filter-operator).
*
* @example
* ```html Filter Cell
*
*
*
*
*
*
*
* ```
* ```html Filter Menu
*
*
*
*
*
*
*
* ```
*/
export declare class AfterFilterOperatorComponent extends FilterOperatorBase {
constructor(ctx: ContextService);
/**
* @hidden
*/
toJSON(): {
text: string;
value: string;
};
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}