import { Value } from './value';
export interface TextValue extends Value {
    value?: string;
}
