import { TypeScriptCommonConfig } from 'graphql-codegen-typescript-common';
import { PluginFunction } from 'graphql-codegen-core';
export interface TypeScriptServerResolversConfig extends TypeScriptCommonConfig {
    noNamespaces?: boolean;
    contextType?: string;
    mappers?: {
        [name: string]: string;
    };
    defaultMapper?: string;
}
export declare const plugin: PluginFunction<TypeScriptServerResolversConfig>;
