export declare function parseSanHTML(str: string): {}[];
export declare function assertSanHTMLEqual(expected: string, got: string): void;
export declare function assertDeepEqual(lhs: any, rhs: any): void;
/**
* San HTML 数据和 DOM 部分比较(不依赖 Object key 顺序)
*
* @returns 相等时返回空(undefined),不相等时返回信息(比如 "data not equal")
*/
export declare function compareSanHTML(expected: string, got: string): "data not equal" | "html not equal" | undefined;
export declare function deepEqual(lhs: any, rhs: any): boolean;