declare function _isString(testValue: string): testValue is string;
declare function _isInt(testValue: number): boolean;
declare function _isURL(testValue: string): boolean;
declare function _isVersion(testValue: string): boolean;
declare function _isSource(testValue: string): boolean;
export { _isString, _isURL, _isVersion, _isSource, _isInt };
