import { ModelValidator } from '@bitblit/ratchet-misc/model-validator/model-validator'; import { BackgroundConfig } from '../config/background/background-config.js'; import { BackgroundEntry } from './background-entry.js'; import { BackgroundProcessor } from '../config/background/background-processor.js'; import { BackgroundAwsConfig } from '../config/background/background-aws-config.js'; export declare class BackgroundValidator { private cfg; private modelValidator; constructor(cfg: BackgroundConfig, modelValidator: ModelValidator); findProcessor(typeName: string): BackgroundProcessor; validType(type: string): boolean; validateEntry(entry: BackgroundEntry): string[]; validateEntryAndThrowException(entry: BackgroundEntry): void; static validateAndMapProcessors(processorInput: BackgroundProcessor[], _modelValidator: ModelValidator): Map>; static validateAwsConfig(cfg: BackgroundAwsConfig): string[]; static validateConfig(cfg: BackgroundConfig): string[]; }