/**
* Wraps an array of strings. The Array describes a path from the root of the
* syntax tree to a token including all scope names for the entire path.
*/
export interfaceScopeDescriptor {
/** Returns all scopes for this descriptor. */
getScopesArray(): readonlystring[];
}