/**
 * Calculates the approximate number of bytes that the provided object holds.
 * @param object
 */
export default function sizeof<T>(object: T): number;