import type { VariableType, VariableValue } from "@featurevisor/types"; type FieldType = string | VariableType; export type ValueType = VariableValue; export declare function getValueByType(value: ValueType, fieldType: FieldType): ValueType; export {};