export { Abort }; export { isAbort }; declare function isAbort(thing: unknown): thing is ReturnType; declare function Abort(abortValue?: unknown): Error & { isAbort: true; abortValue: unknown; __telefunc_isAbort: true; };