/** * It help you to know if a variable is a String * @param {string | any} variable variable that you want to know if it's a String * @returns {boolean} If it's a String it will returns a true otherwise return false */ declare const isString: (variable: string | any) => boolean; export { isString };