/** An enum that represents filter scope */ export declare enum FilterScope { /** The filtered content must contain the filter text */ Contains = 0, /** The filtered content must start with the filter text */ StartsWith = 1, /** The filtered content must end with the filte text */ EndsWith = 2 }