/**
 * @file formatFilterValue.ts
 * @input OperatorValue, FilterValue, config
 * @output Formatted display string for a filter value
 * @position Pure utility; consumed by PowerSearch token rendering
 *
 * SYNC: When modified, update:
 * - /packages/core/src/PowerSearch/index.ts
 */
import type { OperatorValue, FilterValue } from './types';
import type { InternalConfig } from './useInternalConfig';
import type { TranslatorFn } from '../i18n';
export declare function formatFilterValue(_config: InternalConfig, operatorValue: OperatorValue, filterValue: FilterValue, maxLength: number, t: TranslatorFn, timezoneID?: string): string;
//# sourceMappingURL=formatFilterValue.d.ts.map