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