import { Entity } from './Entity'; import { BaseInterface } from './Task/BaseInterface'; export declare class Processor { private tasks; constructor(tasks: BaseInterface[]); process(entity: Entity): void; }