import { HashData } from './types';
/**
 * set hash value with path and encoded data string
 */
export declare function setHashData(hashData: HashData): void;
/**
 * get path and data from url hash
 */
export declare function getHashData(): HashData;
/**
 * bind function context and give the function ability to call next function
 */
export declare function sequence(seq: Function[], ctx: any): void;
