declare module 'object-sizeof' { /** * Calculates the approximate number of bytes that the provided object holds. * @param object */ export default function sizeof(object: T): number; }