import { type NodePath } from '@babel/traverse'; import * as t from '@babel/types'; type DefaultColorTheme = 'light'; export default function plugin(): { visitor: { Program?: undefined; }; } | { visitor: { Program: { enter(path: NodePath, state: { opts: { /** * @default true */ shouldUseAutoFallback?: boolean; /** * @default true */ shouldForceAutoFallback?: boolean; forceAutoFallbackExemptions?: string[]; defaultTheme?: DefaultColorTheme; }; }): void; exit(path: NodePath): void; }; }; }; export {};