/** * Prevents the modification of existing property attributes and values, * and prevents the addition of new properties. * * @param object The original object. * @returns A new frozen object. */ export declare function freeze(object: T): Readonly;