import babel, { PluginObj } from '@babel/core';
export default function reactRefreshPlugin({ types: t, }: typeof babel): PluginObj;
declare type Awaited<T> = T extends Promise<infer V> ? V : T;