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