/**
* Returns a deep copy of the dictionary.
* \n
* A deep copy means that changing values in the copied dictionary will not affect the original dictionary.
*
* @param dict The dictionary.
* @returns The copied dictionary.
*/
export declarefunctiondictCopy(dict: object): object;