import type { PersistConfig, UploadConfig } from '@code-pushup/models'; import type { NormalizedExecutorContext } from './context.js'; import type { BaseNormalizedExecutorContext, GlobalExecutorOptions, ProjectExecutorOnlyOptions } from './types.js'; export declare function globalConfig(options: Partial>, context: BaseNormalizedExecutorContext): GlobalExecutorOptions; export declare function persistConfig(options: Partial, context: BaseNormalizedExecutorContext): Partial; export declare function uploadConfig(options: Partial, context: NormalizedExecutorContext): Partial;