export declare function cloneDeep(obj: T): T; export declare function entries(obj: Record): [string, T][]; /** * This function mirrors the Object.fromEntries method. * * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/fromEntries */ export declare function fromEntries(entries: [K, V][]): Record; /** * This function mirros the Object.values method. * * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_objects/Object/values */ export declare function values(some: Record): T[]; /** * This function mirrors the String#includes and Array#includes methods. * * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes * and https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes */ export declare function includes(subject: string, searchString: string): boolean; export declare function includes(subject: Array, searchObject: T): boolean; export declare function jsonToSass(json: Record>>): string;