export type BabelApi = { cache: (value: boolean) => void; }; export type BabelConfigPlugin = [ string, { root?: Array; alias?: Record; } ]; export type BabelConfig = { retainLines?: boolean; plugins?: Array; presets?: Array; }; //# sourceMappingURL=types.d.ts.map