/** * Use the current, immediate-parent DQL context - equivalent to `{{ $this }}` in a DQL-enhanced * field. * * @return An Either construct (https://gcanti.github.io/fp-ts/modules/Either.ts.html) of the * current DQL context, or an error message (when _tag is `Right`, the parsing and resolving * was successful; when `_tag` is `Left`, something failed and the object contains an error message) */ export declare const useDQLContext: () => import("../../../standard-result").Result;