import { SuspendableObject } from '../../types';
/**
 * Defines a Grid Filter (essentially a Boolean Expression)
 */
export interface GridFilter extends SuspendableObject {
    /**
     * The (boolean) Expression to run
     */
    Expression?: string;
}
