import type { api } from './helpers.ts'; type BabelConfigFn = (options: typeof api) => BabelConfigObj; export type BabelConfigObj = { plugins?: (string | [string, unknown])[]; presets?: (string | [string, unknown])[]; env?: Record; overrides?: BabelConfigObj[]; }; export type BabelConfig = BabelConfigObj | BabelConfigFn; export {};