/** * Text filter class */ export declare class TextFilter { /** * To Apply filter on Input Box * * ```js * * TextFilter.filterByText("PO Number","Po_1234") * ``` * * @param {String} filterLabel // Enter The Label of the input element * @param {String} textValue // The value you need to enter in the input box * */ static filterByText(filterLabel: string, textValue: string | number): Promise; }