import { InputValue } from './interface';
export default class ObjectValue implements InputValue<Record<string, InputValue>> {
    private fields;
    constructor({ fields }: {
        fields: Record<string, InputValue>;
    });
    isScalar(): boolean;
    getType(): any;
    getValue(): Record<string, InputValue>;
}
