/**
 * A VariableResolutionContext explains how a variable name should be resolved.
 */
export type StrictResolution = 0;
export type ResolveAsComponentOrHelperHeadResolution = 1;
export type ResolveAsHelperHeadResolution = 5;
export type ResolveAsModifierHeadResolution = 6;
export type ResolveAsComponentHeadResolution = 7;
