import { BaseResourceAPI } from '@cognite/sdk-core'; import { GraphQlResponse } from '../../types'; export declare class TemplateGraphQlApi extends BaseResourceAPI { /** * [Run a GraphQL query](https://pr-1202.specs.preview.cogniteapp.com/v1.json.html#operation/postApiV1ProjectsProjectTemplategroupsExternalidVersionsVersionGraphql) * * ```js * client.templates.group("myGroup").versions(1).runQuery({ query: ` * wellList { * name * } * `}); * ``` */ runQuery: >({ query, variables, operationName, }: { query: string; variables?: TVariables; operationName?: string; }) => Promise; }