/** * Help you to know if a variable is a symbol * @param {symbol | any} variable variable that you want to know if is a symbol * @returns {boolean} if it is a symbol returns true otherwise return false */ declare const isSymbol: (variable: symbol | any) => boolean; export { isSymbol };