import { Kind } from '../../kinds/index.js'; import { Async } from '../async/async.types'; import { Result } from '../result/result.types'; export interface AsyncResult extends Async> { } export interface TAsyncResult extends Kind.binary { return: AsyncResult; }