/** * Get a string representation of a value's type, as used in error messages. * @param {any} value Value to inspect * @return {string} String representation of the value's type */ export default function getType(value: any): string;