import { ExecutionResult } from 'graphql'; import { LinkedType } from './linkTypeMap'; export interface TypeMapper { [type: string]: { serialize: (input: any) => any; deserialize: (output: any) => any; } | undefined; } export declare const applyTypeMapperToResponse: (root: LinkedType, result: ExecutionResult, mapper: TypeMapper) => ExecutionResult;