/**
 * Check if both values have the same type
 *
 * @param a - Comparable value
 * @param b - Value to compare with
 * @returns true if values have the same type
 */
declare const isSameType: (a: any, b: any) => boolean;
export default isSameType;
