import type { ExpressionKind } from 'ast-types/lib/gen/kinds'; import * as graphql from 'graphql'; import type { Config } from '../../../lib'; export declare function serializeValue(value: any): ExpressionKind; export declare function convertValue(config: Config, val: graphql.ValueNode): { kind: string | undefined; value: string | number | boolean | undefined; };