import { Assets, Asset, CalculatedChanges } from '../../../types'; import DefaultHandler from './default'; export declare const schema: { type: string; items: { type: string; properties: { key: { type: string; pattern: string; }; value: { type: string; }; }; required: string[]; }; additionalProperties: boolean; }; export default class RulesConfigsHandler extends DefaultHandler { constructor(options: DefaultHandler); getType(): Promise; objString(item: any): string; calcChanges(assets: Assets): Promise; dryRunChanges(assets: Assets): Promise; }