type FreezeObject = Record<string, any>;
export default function freezeSys<T extends FreezeObject>(obj: T): T;
export {};
