import { InputValue } from './interface';
export default class SimpleValue<ValueType> implements InputValue<ValueType> {
    private value;
    constructor({ value }: {
        value: ValueType;
    });
    isScalar(): boolean;
    getType(): string;
    getValue(): ValueType;
}
