import TagMap from './TagMap';
/**
 * Unifiyed `this` object during riot.compile().
 *
 * Note top level script in a tag is executed on compilation.
 */
export default class EvalContext {
    evalTag(tagjs: string): {
        tags: TagMap;
        tagNames: string[];
    };
}
