declare module "sap/esh/search/ui/sinaNexTS/providers/sample2/Util" { /*! * SAPUI5 * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. */ import { Value as RawValue } from "sap/esh/search/ui/sinaNexTS/sina/types"; import { AttributeType } from "sap/esh/search/ui/sinaNexTS/sina/AttributeType"; import { ComparisonOperator } from "sap/esh/search/ui/sinaNexTS/sina/ComparisonOperator"; function readFile(path: string): Promise; function isMatched(value1: RawValue, value2: RawValue, operator: ComparisonOperator, caseSensitive?: boolean): boolean; function isStringMatched(value1: string, value2: string, operator: ComparisonOperator, caseSensitive?: boolean): boolean; function getMatchedStringValues(stringValues: string[], searchTerm: string, caseSensitive?: boolean): string[]; function formatRawValue(stringValue: string, type: AttributeType): RawValue; function formatHighlightedValue(stringValue: string, searchTerm: string): string; function format10Power(value: number, isCeil?: boolean): number; function isStarString(value: string): boolean; function isNotEmptyString(value: string): boolean; function getSubTerms(searchTerm: string): string[]; } //# sourceMappingURL=Util.d.ts.map