/**
 * Typecast a value to a String, using an empty string value for null or
 * undefined.
 */
declare function toString(val: any): string;
export default toString;
