/** * it validates if a variable is a promise * @param {any} variable Variable to verify * @returns {boolean} If the variable is a promise returns true, otherwise false */ declare const isPromise: (variable: any) => boolean; export { isPromise };