/**
 * Check and return true if an object is type of string
 */
export declare function isString(obj: any): boolean;
/**
 * Check and return true if an object is type of number
 */
export declare function isNumber(obj: any): boolean;
/**
 * Check and return true if an object is type of Function
 */
export declare function isFunction(obj: any): boolean;
