import { DocumentNode } from 'graphql';
/**
 * Adds an entity through mutation.
 *
 * @param input
 * @param mutation
 * @param name
 */
declare const addEntityMutation: <I, M>(input: I, mutation: DocumentNode, name: string) => Promise<M | undefined>;
export { addEntityMutation, };
