import { ApiBase } from '../Implementation/ApiBase';
import { GridFilter } from '../../types';
export declare class GridFilterInternalApi extends ApiBase {
    /**
     * Compares to Grid Filter to see if they are identical
     */
    isGridFilterDifferent(oldFilter: GridFilter, newFilter: GridFilter): boolean;
}
