import { NodePath, PluginObj, types as BabelTypes } from '@babel/core'; declare type PluginState = { refs: Set>; isPrerender: boolean; isServerProps: boolean; done: boolean; }; export default function nextTransformSsg({ types: t, }: { types: typeof BabelTypes; }): PluginObj; export {};