/** * EProcValueFilter class */ export declare class EProcValueFilter { /** * To select all EProcValueFilteres * @param {String} filterHeader name of the checkbox collection header */ static selectAll(filterHeader: string): Promise; /** * To Search and select a EProcValueFilter * @param {String} filterHeader name of the checkbox collection header * @param {String} filterToSelect name of the filter to select */ static searchSelect(filterHeader: string, filterToSelect: string): Promise; /** * To select a particular EProcValueFilter directly without searching * @param {String} filterHeader name of the checkbox collection header * @param {String} filterToSelect name of the filter to select */ static directSelect(filterHeader: string, filterToSelect: string): Promise; }