import { type Tree } from '@nx/devkit'; import type { PersistConfig, UploadConfig } from '@code-pushup/models'; import type { ItemOrArray } from '@code-pushup/utils'; import type { ExecutableCode } from './types.js'; export declare const DEFAULT_IMPORTS: string[]; export type GenerateCodePushupConfigOptions = { fileImports?: ItemOrArray; persist?: Partial; upload?: Partial; plugins?: ExecutableCode[]; categories?: ExecutableCode[]; }; export declare function generateCodePushupConfig(tree: Tree, root: string, options?: GenerateCodePushupConfigOptions): void;