import { FeatureValueType } from '../../domain/value-objects/FeatureValueType.js'; /** * Shared utility for validating feature values based on their type */ export declare class FeatureValueValidator { /** * Validate a feature value against its type * @param value - The value to validate * @param valueType - The type of the feature * @throws {ValidationError} If the value is invalid for the type */ static validate(value: string, valueType: FeatureValueType): void; } //# sourceMappingURL=FeatureValueValidator.d.ts.map