import SimpleValue from './simpleValue';
export declare class IntValue extends SimpleValue<number> {
    getType(): any;
}
export declare class FloatValue extends SimpleValue<number> {
    getType(): any;
}
export declare class StringValue extends SimpleValue<string> {
    getType(): any;
}
export declare class BooleanValue extends SimpleValue<boolean> {
    getType(): any;
}
export declare class NullValue extends SimpleValue<null> {
    constructor();
    getType(): any;
    getValue(): any;
}
export declare class EnumValue extends SimpleValue<any> {
    getType(): any;
}
export { default as ListValue } from './listValue';
export { default as ObjectValue } from './objectValue';
