export function escape(es: any): any; export class Unsafe { constructor(data: any); valueOf(): any; toString(): string; #private; } export function unsafe(data: any): Unsafe; export function createComment(value: any): Comment; export const assign: { (target: T, source: U): T & U; (target: T, source1: U, source2: V): T & U & V; (target: T, source1: U, source2: V, source3: W): T & U & V & W; (target: object, ...sources: any[]): any; }; export const defineProperties: (o: T, properties: PropertyDescriptorMap & ThisType) => T; export const entries: { (o: { [s: string]: T; } | ArrayLike): [string, T][]; (o: {}): [string, any][]; }; export const freeze: { (f: T): T; (o: T): Readonly; (o: T): Readonly; }; export const isArray: (arg: any) => arg is any[]; export const keys: { (o: object): string[]; (o: {}): string[]; };