import { TranslateService } from '@ngx-translate/core'; import { ConditionOperator } from '../models'; declare function formatResourceType(translate: TranslateService, fqn: string): string; declare function formatField(translate: TranslateService, resourceType: string, field: string): string; declare function formatOperator(translate: TranslateService, operator: ConditionOperator): string; declare function formatValue(translate: TranslateService, value: unknown): string; declare function humanizeFieldPath(field: string): string; export { formatField, formatOperator, formatResourceType, formatValue, humanizeFieldPath };