import { NodePath, types } from '@babel/core'; interface State { replacedComponents: Set; unsupportedComponents: Set; } declare const plugin: () => { visitor: { Program(path: NodePath, state: Partial): void; }; }; export { plugin as default };