import { types } from '@babel/core';
export declare function isAtom(t: typeof types, callee: babel.types.Expression | babel.types.V8IntrinsicIdentifier): boolean;
declare type Awaited<T> = T extends Promise<infer V> ? V : T;