import { PluginConfig } from "./types.js";
export declare const DEFAULT_CONFIG: PluginConfig;
export declare class ConfigService {
private config;
constructor(initialConfig?: Partial<PluginConfig>);
getConfig(): PluginConfig;
getEnabledEnhancerIds(): string[];
getTemperature(enhancerId: string): number;
}
export declare const configSchematics: {
enabledEnhancers: {
type: string;
label: string;
options: {
value: string;
label: string;
}[];
default: string[];
};
temperature: {
type: string;
label: string;
min: number;
max: number;
step: number;
default: number;
};
};
export declare const globalConfigSchematics: {
enabledEnhancers: {
type: string;
label: string;
options: {
value: string;
label: string;
}[];
default: string[];
};
temperature: {
type: string;
label: string;
min: number;
max: number;
step: number;
default: number;
};
};
//# sourceMappingURL=config.d.ts.map