import EachBlock from '../EachBlock'; import ThenBlock from '../ThenBlock'; import CatchBlock from '../CatchBlock'; import InlineComponent from '../InlineComponent'; import Element from '../Element'; import SlotTemplate from '../SlotTemplate'; import ConstTag from '../ConstTag'; declare type NodeWithScope = EachBlock | ThenBlock | CatchBlock | InlineComponent | Element | SlotTemplate | ConstTag; export default class TemplateScope { names: Set; dependencies_for_name: Map>; owners: Map; parent?: TemplateScope; constructor(parent?: TemplateScope); add(name: any, dependencies: Set, owner: any): this; child(): TemplateScope; is_top_level(name: string): any; get_owner(name: string): NodeWithScope; is_let(name: string): boolean; is_await(name: string): boolean; is_const(name: string): boolean; } export {};