/** * Checks whether a value is async — an AsyncFunction, a Promise, or a thenable. */ export declare function isAsyncValue(val: any): boolean; /** * Normalises an async value (AsyncFunction | Promise | thenable) into a plain * Promise so callers can simply `.then(...)` on the result. */ export declare function resolveAsyncValue(val: any): Promise; /** * Extracts the resolved module's default export (if present) or the module * itself. Used after awaiting a lazy / async component import. */ export declare function unwrapModule(module: any): any; //# sourceMappingURL=x-x.utils.d.ts.map