import DefaultHandler from './default'; import { Asset, Assets } from '../../../types'; export declare const schema: { type: string; items: { type: string; properties: { name: { type: string; enum: string[]; }; }; required: string[]; }; }; export default class GuardianFactorsHandler extends DefaultHandler { existing: Asset[]; constructor(options: DefaultHandler); getType(): Promise; processChanges(assets: Assets): Promise; }