import { Context } from '../../context/context'; /** * Key-Value Pairs Representing Tag Arguments * Example: * For the markup `{% include 'head.html' foo='bar' %}`, * hash['foo'] === 'bar' */ export declare class Hash { [key: string]: any; private static parse; static create(markup: string, ctx: Context): IterableIterator; }