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