import { DocumentNode } from 'graphql'; /** * Checks the current documentNode for an operation with a variable named "CreateInput" or "UpdateInput" * and if a match is found, returns the name. */ export declare function isEntityCreateOrUpdateMutation(documentNode: DocumentNode): string | undefined;