import babel, { PluginObj } from '@babel/core'; import { PluginOptions } from './utils'; export default function debugLabelPlugin({ types: t }: typeof babel, options?: PluginOptions): PluginObj; declare type Awaited = T extends Promise ? V : T;